# Music Amazon — Wrapped API

> **You are on:** `https://api.paywithlocus.com/api` | [llms.txt](https://paywithlocus.com/llms.txt) | [docs](https://docs.paywithlocus.com)
>
> Locus runs on multiple environments -- make sure every URL you call matches your expected environment.
> | Environment | Landing | API | Docs |
> |---|---|---|---|
> | Production | paywithlocus.com | api.paywithlocus.com | docs.paywithlocus.com |
> | Beta | beta.paywithlocus.com | api.beta.paywithlocus.com | docs.paywithlocus.com |
> | Stage | stage.paywithlocus.com | api.stage.paywithlocus.com | docs.paywithlocus.com |
>
> If the API URL above doesn't match your expected environment, re-fetch this file from the correct domain.

> Search and browse the full Amazon Music catalog to discover artists, albums, and tracks that match your interests. Find upcoming releases and get detailed information about your favorite musicians and their discographies.

**Category:** Music | **Website:** [music.amazon.com/](https://music.amazon.com/) | **Docs:** [parse.bot/marketplace/e44dd77d-d535-4147-9e66-2d4d4c5a0c23/music-amazon-com-api](https://parse.bot/marketplace/e44dd77d-d535-4147-9e66-2d4d4c5a0c23/music-amazon-com-api)

Pay-per-use API proxy. Each call is automatically billed to your wallet in USDC.

## Access

**Base URL:** `https://api.paywithlocus.com/api/wrapped/parse-music-amazon-com-api-e44dd77d/`
**Auth:** `Authorization: Bearer <LOCUS_API_KEY>`

## Endpoints

### get_album

Retrieve detailed information about an album by its Amazon Music ASIN. Returns album metadata (name, artist, release date, track count, cover art) and the full tracklist.

**Estimated cost:** Metered

| Field | Type | Required | Description |
|-------|------|----------|-------------|
| `album_id` | string | Yes | Amazon Music album ASIN (e.g. B0H3M1J74G). Obtainable from search results or artist page. |

```bash
curl -X POST https://api.paywithlocus.com/api/wrapped/parse-music-amazon-com-api-e44dd77d/get_album \
  -H "Authorization: Bearer YOUR_LOCUS_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"album_id":"<string>"}'
```

### get_artist

Retrieve detailed information about an artist by their Amazon Music ASIN. Returns artist name, follower count, top tracks, albums, singles, and related artists.

**Estimated cost:** Metered

| Field | Type | Required | Description |
|-------|------|----------|-------------|
| `artist_id` | string | Yes | Amazon Music artist ASIN (e.g. B00157GJ20). Obtainable from search results. |

```bash
curl -X POST https://api.paywithlocus.com/api/wrapped/parse-music-amazon-com-api-e44dd77d/get_artist \
  -H "Authorization: Bearer YOUR_LOCUS_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"artist_id":"<string>"}'
```

### get_upcoming_releases

Search for releases associated with a label or distributor name. Returns albums and singles matching the label/distributor query.

**Estimated cost:** Metered

| Field | Type | Required | Description |
|-------|------|----------|-------------|
| `label_or_distributor` | string | Yes | Label or distributor name to search for (e.g. 'Republic Records'). |
| `limit` | integer | No | Maximum number of results to return (1-50). |
| `offset` | integer | No | Number of results to skip for pagination. |

```bash
curl -X POST https://api.paywithlocus.com/api/wrapped/parse-music-amazon-com-api-e44dd77d/get_upcoming_releases \
  -H "Authorization: Bearer YOUR_LOCUS_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"label_or_distributor":"<string>","limit":"<integer>","offset":"<integer>"}'
```

### search

Full-text search across the Amazon Music catalog. Returns a mixed list of tracks, artists, and albums matching the query. Each result includes an id, name, type, image, and URL.

**Estimated cost:** Metered

| Field | Type | Required | Description |
|-------|------|----------|-------------|
| `limit` | integer | No | Maximum number of results to return (1-50). |
| `offset` | integer | No | Number of results to skip for pagination. |
| `query` | string | Yes | Search query string. |
| `type` | string | No | Filter results by type. Omitted returns all types. |

```bash
curl -X POST https://api.paywithlocus.com/api/wrapped/parse-music-amazon-com-api-e44dd77d/search \
  -H "Authorization: Bearer YOUR_LOCUS_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"limit":"<integer>","offset":"<integer>","query":"<string>","type":"<string>"}'
```
