Apple Music Catalog API

Apple Music catalog resources

Operations 10

GET /catalog/{storefront}/songs/{id} Get a catalog song by id
GET /catalog/{storefront}/songs Get catalog songs by ids
GET /catalog/{storefront}/albums/{id} Get a catalog album by id
GET /catalog/{storefront}/albums Get catalog albums by ids
GET /catalog/{storefront}/artists/{id} Get a catalog artist by id
GET /catalog/{storefront}/artists Get catalog artists by ids
GET /catalog/{storefront}/playlists/{id} Get a catalog playlist by id
GET /catalog/{storefront}/playlists Get catalog playlists by ids
GET /catalog/{storefront}/music-videos/{id} Get a catalog music video by id
GET /catalog/{storefront}/stations/{id} Get a catalog station by id

Work with this as data

Every API here is available over the APIs.io API and to AI agents over MCP.

MCP server

One button, every client — Claude, Cursor, VS Code and the rest.

https://apis.io/mcp

Tools for apis

7 MCP tools reach this
  • find_apisBrowse and filter every API in the catalog.
  • get_api_artifactsOne API's artifacts, grouped by type.
  • get_openapiThe primary OpenAPI for this API.
  • find_similar_apisAPIs that look like this one.
  • apis_io_searchSTART HERE — APIs, providers and tags for one query, each with its total.
  • resolveTurn a domain, URL or GitHub org into the provider it belongs to.
  • find_cohortsEvery scored population of providers in the catalog.
All 92 tools →

Call it yourself

curl for this page
This API
curl "https://apis.io/api/v1/apis/apple-music-catalog-api"
All apis
curl "https://apis.io/api/v1/apis?limit=25"

Discovery needs no key. Ratings and market analysis are Pro.

Get an API key

Free tier, no form to fill in. Signing in shares your email address with us — we store it to create your key and to recognise you if you sign in with another provider. See our Privacy Policy and Terms.

A second provider on the same verified email joins the account you already have.

OpenAPI Specification

apple-music-catalog-api-openapi.yml Raw ↑
openapi: 3.2.0
info:
  title: Apple Music Catalog API
  version: '1.0'
  description: 'REST API for the Apple Music catalog and the authenticated user''s library.

    Catalog endpoints (songs, albums, artists, music videos, playlists,

    stations, search, charts) require an Apple Developer JWT in the

    Authorization header. User-library endpoints additionally require a

    Music User Token in the Music-User-Token header.

    '
  contact:
    name: Apple Developer Documentation
    url: https://developer.apple.com/documentation/applemusicapi
servers:
- url: https://api.music.apple.com/v1
  description: Apple Music API v1
security:
- DeveloperToken: []
tags:
- name: Catalog
  description: Apple Music catalog resources
paths:
  /catalog/{storefront}/songs/{id}:
    get:
      tags:
      - Catalog
      summary: Get a catalog song by id
      parameters:
      - $ref: '#/components/parameters/Storefront'
      - $ref: '#/components/parameters/Id'
      responses:
        '200':
          description: OK
  /catalog/{storefront}/songs:
    get:
      tags:
      - Catalog
      summary: Get catalog songs by ids
      parameters:
      - $ref: '#/components/parameters/Storefront'
      - $ref: '#/components/parameters/Ids'
      responses:
        '200':
          description: OK
  /catalog/{storefront}/albums/{id}:
    get:
      tags:
      - Catalog
      summary: Get a catalog album by id
      parameters:
      - $ref: '#/components/parameters/Storefront'
      - $ref: '#/components/parameters/Id'
      responses:
        '200':
          description: OK
  /catalog/{storefront}/albums:
    get:
      tags:
      - Catalog
      summary: Get catalog albums by ids
      parameters:
      - $ref: '#/components/parameters/Storefront'
      - $ref: '#/components/parameters/Ids'
      responses:
        '200':
          description: OK
  /catalog/{storefront}/artists/{id}:
    get:
      tags:
      - Catalog
      summary: Get a catalog artist by id
      parameters:
      - $ref: '#/components/parameters/Storefront'
      - $ref: '#/components/parameters/Id'
      responses:
        '200':
          description: OK
  /catalog/{storefront}/artists:
    get:
      tags:
      - Catalog
      summary: Get catalog artists by ids
      parameters:
      - $ref: '#/components/parameters/Storefront'
      - $ref: '#/components/parameters/Ids'
      responses:
        '200':
          description: OK
  /catalog/{storefront}/playlists/{id}:
    get:
      tags:
      - Catalog
      summary: Get a catalog playlist by id
      parameters:
      - $ref: '#/components/parameters/Storefront'
      - $ref: '#/components/parameters/Id'
      responses:
        '200':
          description: OK
  /catalog/{storefront}/playlists:
    get:
      tags:
      - Catalog
      summary: Get catalog playlists by ids
      parameters:
      - $ref: '#/components/parameters/Storefront'
      - $ref: '#/components/parameters/Ids'
      responses:
        '200':
          description: OK
  /catalog/{storefront}/music-videos/{id}:
    get:
      tags:
      - Catalog
      summary: Get a catalog music video by id
      parameters:
      - $ref: '#/components/parameters/Storefront'
      - $ref: '#/components/parameters/Id'
      responses:
        '200':
          description: OK
  /catalog/{storefront}/stations/{id}:
    get:
      tags:
      - Catalog
      summary: Get a catalog station by id
      parameters:
      - $ref: '#/components/parameters/Storefront'
      - $ref: '#/components/parameters/Id'
      responses:
        '200':
          description: OK
components:
  parameters:
    Id:
      name: id
      in: path
      required: true
      schema:
        type: string
    Ids:
      name: ids
      in: query
      required: true
      description: Comma-separated list of resource ids
      schema:
        type: string
    Storefront:
      name: storefront
      in: path
      required: true
      description: Apple Music storefront identifier (e.g. us, gb, jp)
      schema:
        type: string
  securitySchemes:
    DeveloperToken:
      type: http
      scheme: bearer
      bearerFormat: JWT
      description: 'Apple Music developer token (JWT) generated from a Music Key in the

        Apple Developer account.

        '
    MusicUserToken:
      type: apiKey
      in: header
      name: Music-User-Token
      description: 'Music User Token obtained via MusicKit on a signed-in device. Required

        for user-library endpoints.

        '