Chartmetric Tracks API

Track metadata, stats, charts, and playlist placements.

Operations 4

GET /track/{id} Get track metadata #
GET /track/{id}/{platform}/stats Get track stats by platform #
GET /track/{id}/{chartType}/charts Get track chart history #
GET /track/{id}/{platform}/{status}/playlists Get track playlist placements #

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/chartmetric-tracks-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

chartmetric-tracks-api-openapi.yml Raw ↑
openapi: 3.2.0
info:
  title: Chartmetric Albums Tracks API
  description: REST API for the Chartmetric music analytics and artist-intelligence platform. Provides programmatic access to artists, tracks, albums, playlists, and charts along with cross-platform streaming, social, and radio statistics across Spotify, Apple Music, YouTube, TikTok, Instagram, and other platforms, plus a unified search endpoint. Authentication uses a short-lived Bearer access token minted by exchanging a long-lived refresh token at POST /token.
  termsOfService: https://chartmetric.com/terms-of-service
  contact:
    name: Chartmetric Support
    email: hi@chartmetric.com
    url: https://apidocs.chartmetric.com/
  version: '1.0'
servers:
- url: https://api.chartmetric.com/api
  description: Chartmetric production API
security:
- bearerAuth: []
tags:
- name: Tracks
  description: Track metadata, stats, charts, and playlist placements.
paths:
  /track/{id}:
    get:
      operationId: getTrack
      tags:
      - Tracks
      summary: Get track metadata
      parameters:
      - $ref: '#/components/parameters/TrackId'
      responses:
        '200':
          description: Track metadata object.
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/TrackResponse'
        '401':
          $ref: '#/components/responses/Unauthorized'
        '404':
          $ref: '#/components/responses/NotFound'
  /track/{id}/{platform}/stats:
    get:
      operationId: getTrackStats
      tags:
      - Tracks
      summary: Get track stats by platform
      parameters:
      - $ref: '#/components/parameters/TrackId'
      - $ref: '#/components/parameters/Platform'
      - $ref: '#/components/parameters/Since'
      - $ref: '#/components/parameters/Until'
      responses:
        '200':
          description: Time-series stat values for the track on the given platform.
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/StatResponse'
        '401':
          $ref: '#/components/responses/Unauthorized'
  /track/{id}/{chartType}/charts:
    get:
      operationId: getTrackCharts
      tags:
      - Tracks
      summary: Get track chart history
      parameters:
      - $ref: '#/components/parameters/TrackId'
      - $ref: '#/components/parameters/ChartType'
      responses:
        '200':
          description: Chart appearances for the track.
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/GenericObject'
        '401':
          $ref: '#/components/responses/Unauthorized'
  /track/{id}/{platform}/{status}/playlists:
    get:
      operationId: getTrackPlaylists
      tags:
      - Tracks
      summary: Get track playlist placements
      parameters:
      - $ref: '#/components/parameters/TrackId'
      - $ref: '#/components/parameters/Platform'
      - $ref: '#/components/parameters/PlaylistStatus'
      responses:
        '200':
          description: Playlists the track appears on for the given platform and status.
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/GenericObject'
        '401':
          $ref: '#/components/responses/Unauthorized'
components:
  schemas:
    GenericObject:
      type: object
      properties:
        obj:
          description: Response payload, shape varies by endpoint.
          oneOf:
          - type: object
            additionalProperties: true
          - type: array
            items:
              type: object
              additionalProperties: true
    StatResponse:
      type: object
      properties:
        obj:
          type: object
          description: Time-series stat values keyed by metric.
          additionalProperties: true
    TrackResponse:
      type: object
      properties:
        obj:
          $ref: '#/components/schemas/Track'
    Error:
      type: object
      properties:
        error:
          type: string
          description: Human-readable error message.
        status:
          type: integer
          description: HTTP status code.
    Track:
      type: object
      properties:
        id:
          type: integer
          description: Chartmetric track ID.
        name:
          type: string
        isrc:
          type: string
        artist_names:
          type: array
          items:
            type: string
        album_names:
          type: array
          items:
            type: string
        release_dates:
          type: array
          items:
            type: string
            format: date
  parameters:
    TrackId:
      name: id
      in: path
      required: true
      description: Chartmetric track ID.
      schema:
        type: integer
    PlaylistStatus:
      name: status
      in: path
      required: true
      description: Placement status (current or past).
      schema:
        type: string
        enum:
        - current
        - past
    ChartType:
      name: chartType
      in: path
      required: true
      description: Chart type for the platform (for example library, listeners, popularity).
      schema:
        type: string
    Since:
      name: since
      in: query
      required: false
      description: Start date for time-series data (YYYY-MM-DD).
      schema:
        type: string
        format: date
    Platform:
      name: platform
      in: path
      required: true
      description: Streaming, social, or radio platform identifier.
      schema:
        type: string
    Until:
      name: until
      in: query
      required: false
      description: End date for time-series data (YYYY-MM-DD).
      schema:
        type: string
        format: date
  responses:
    Unauthorized:
      description: Missing or invalid access token.
      content:
        application/json:
          schema:
            $ref: '#/components/schemas/Error'
    NotFound:
      description: The requested entity was not found.
      content:
        application/json:
          schema:
            $ref: '#/components/schemas/Error'
  securitySchemes:
    bearerAuth:
      type: http
      scheme: bearer
      bearerFormat: JWT
      description: Bearer access token obtained from POST /token.