## spotify/album

`GET /v1/spotify/album`

Look up one Spotify album by id or open.spotify.com URL, including label, copyrights, UPC, and the first page of its track listing.

*Get a Spotify album*

| Parameter | Required | Description |
| --- | --- | --- |
| `id` | no | Spotify album id (this or url) — e.g. `4aawyAB9vmqN3uQ7FjRGTy` |
| `url` | no | open.spotify.com album URL or spotify:album: URI (this or id) — e.g. `https://open.spotify.com/album/4aawyAB9vmqN3uQ7FjRGTy` |
| `market` | no | ISO 3166-1 alpha-2 country to scope availability (optional) — e.g. `US` |
| `dry_run` | no | Read a zero-credit estimate without fetching sources, running AI, or reserving credits. Cache status is a snapshot, not a guarantee at execution. — e.g. `1` |

**Cost:** 1 credit at list price per successful uncached response; variable-cost operations may quote or settle a different charge. Confirmed uncharged or refunded failures report zero. Pending reconciliation can report credits_used:null; retain request_id and the original idempotency key.

```bash
curl "https://www.monocrawl.com/v1/spotify/album?url=https%3A%2F%2Fopen.spotify.com%2Falbum%2F4aawyAB9vmqN3uQ7FjRGTy" \
  -H "x-api-key: mn_your_key_here"
```

### Response data

Illustrative abbreviated data; documented core fields are optional and may be null. Additional source fields are allowed.

```json
{
  "album_type": "example",
  "artists": [
    {
      "id": "example",
      "name": "example",
      "uri": "example",
      "url": "https://example.com/example"
    }
  ],
  "copyrights": [
    {
      "text": "example",
      "type": "example"
    }
  ],
  "genres": [],
  "id": "example",
  "image_url": "https://example.com/example",
  "images": [
    {
      "height": 0,
      "url": "https://example.com/example",
      "width": 0
    }
  ],
  "kind": "example",
  "label": "example",
  "popularity": 0,
  "release_date": "2026-09-01T12:00:00Z",
  "release_date_precision": "2026-09-01T12:00:00Z",
  "title": "example",
  "total_tracks": 0,
  "uri": "example",
  "url": "https://example.com/example"
}
```

[Field reference](https://www.monocrawl.com/docs/endpoints/spotify/album#response) · [JSON Schema for response.data](https://www.monocrawl.com/schemas/spotify/album.json)
