Soundcharts Chart API

The Chart API from Soundcharts — 5 operation(s) for chart.

Operations 5

GET /api/v2/chart/song/by-platform/{platform} Get song charts by platform #
GET /api/v2/chart/song/{slug}/ranking/latest Get latest song ranking #
GET /api/v2/chart/song/{slug}/ranking/{datetime} Get song ranking for a date #
GET /api/v2/chart/album/{slug}/ranking/latest Get latest album ranking #
GET /api/v2/chart/tiktok/music/weekly/ranking/latest Get latest TikTok weekly music ranking #

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/soundcharts-chart-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

soundcharts-chart-api-openapi.yml Raw ↑
openapi: 3.2.0
info:
  title: Soundcharts Album Chart API
  description: REST API for the Soundcharts music-market intelligence platform. Provides standardized metadata and real-time and historical performance data for artists, songs, albums, and playlists across streaming, social, chart, and radio sources. Requests are authenticated with the x-app-id and x-api-key headers.
  termsOfService: https://soundcharts.com/en/terms
  contact:
    name: Soundcharts API Support
    url: https://developers.soundcharts.com/api/v2/doc
  version: '2.0'
servers:
- url: https://customer.api.soundcharts.com
security:
- AppId: []
  ApiKey: []
tags:
- name: Chart
paths:
  /api/v2/chart/song/by-platform/{platform}:
    get:
      operationId: getSongChartsByPlatform
      tags:
      - Chart
      summary: Get song charts by platform
      description: List the available song charts for a platform.
      parameters:
      - $ref: '#/components/parameters/Platform'
      responses:
        '200':
          description: List of charts
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ChartListResponse'
  /api/v2/chart/song/{slug}/ranking/latest:
    get:
      operationId: getSongRankingLatest
      tags:
      - Chart
      summary: Get latest song ranking
      description: Retrieve the latest ranking for a song chart.
      parameters:
      - $ref: '#/components/parameters/Slug'
      - $ref: '#/components/parameters/Offset'
      - $ref: '#/components/parameters/Limit'
      responses:
        '200':
          description: Chart ranking
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/RankingResponse'
  /api/v2/chart/song/{slug}/ranking/{datetime}:
    get:
      operationId: getSongRankingForDate
      tags:
      - Chart
      summary: Get song ranking for a date
      description: Retrieve a song chart ranking for a specific date.
      parameters:
      - $ref: '#/components/parameters/Slug'
      - name: datetime
        in: path
        required: true
        description: Ranking date in ISO 8601 format.
        schema:
          type: string
          format: date-time
      responses:
        '200':
          description: Chart ranking
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/RankingResponse'
  /api/v2/chart/album/{slug}/ranking/latest:
    get:
      operationId: getAlbumRankingLatest
      tags:
      - Chart
      summary: Get latest album ranking
      description: Retrieve the latest ranking for an album chart.
      parameters:
      - $ref: '#/components/parameters/Slug'
      - $ref: '#/components/parameters/Offset'
      - $ref: '#/components/parameters/Limit'
      responses:
        '200':
          description: Chart ranking
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/RankingResponse'
  /api/v2/chart/tiktok/music/weekly/ranking/latest:
    get:
      operationId: getTiktokMusicRankingLatest
      tags:
      - Chart
      summary: Get latest TikTok weekly music ranking
      description: Retrieve the latest TikTok weekly music ranking.
      responses:
        '200':
          description: Chart ranking
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/RankingResponse'
components:
  schemas:
    ChartListResponse:
      type: object
      properties:
        page:
          $ref: '#/components/schemas/Page'
        related:
          $ref: '#/components/schemas/Related'
        items:
          type: array
          items:
            $ref: '#/components/schemas/Chart'
    Song:
      type: object
      properties:
        uuid:
          type: string
          format: uuid
        name:
          type: string
        isrc:
          type:
          - object
          - 'null'
          properties:
            value:
              type: string
            countryCode:
              type: string
        creditName:
          type:
          - string
          - 'null'
        releaseDate:
          type:
          - string
          - 'null'
          format: date-time
        duration:
          type:
          - integer
          - 'null'
        artists:
          type: array
          items:
            $ref: '#/components/schemas/Artist'
    Artist:
      type: object
      properties:
        uuid:
          type: string
          format: uuid
        slug:
          type: string
        name:
          type: string
        appUrl:
          type: string
        imageUrl:
          type:
          - string
          - 'null'
        countryCode:
          type:
          - string
          - 'null'
        gender:
          type:
          - string
          - 'null'
        type:
          type:
          - string
          - 'null'
        biography:
          type:
          - string
          - 'null'
        isni:
          type:
          - string
          - 'null'
        ipi:
          type:
          - string
          - 'null'
        genres:
          type: array
          items:
            type: object
            properties:
              root:
                type: string
              sub:
                type: array
                items:
                  type: string
    Page:
      type: object
      properties:
        offset:
          type: integer
        limit:
          type: integer
        total:
          type: integer
    RankingEntry:
      type: object
      properties:
        position:
          type: integer
        oldPosition:
          type:
          - integer
          - 'null'
        timeOnChart:
          type:
          - integer
          - 'null'
        song:
          $ref: '#/components/schemas/Song'
    Chart:
      type: object
      properties:
        slug:
          type: string
        name:
          type: string
        platform:
          type: string
        type:
          type: string
        countryCode:
          type:
          - string
          - 'null'
        frequency:
          type:
          - string
          - 'null'
    Related:
      type: object
      properties:
        self:
          type: string
        previous:
          type:
          - string
          - 'null'
        next:
          type:
          - string
          - 'null'
    RankingResponse:
      type: object
      properties:
        page:
          $ref: '#/components/schemas/Page'
        related:
          $ref: '#/components/schemas/Related'
        items:
          type: array
          items:
            $ref: '#/components/schemas/RankingEntry'
  parameters:
    Platform:
      name: platform
      in: path
      required: true
      description: Platform slug (e.g. spotify, apple-music, youtube, instagram, tiktok).
      schema:
        type: string
    Offset:
      name: offset
      in: query
      required: false
      description: Pagination offset.
      schema:
        type: integer
        default: 0
    Slug:
      name: slug
      in: path
      required: true
      description: Chart, radio, or entity slug.
      schema:
        type: string
    Limit:
      name: limit
      in: query
      required: false
      description: Maximum number of items to return.
      schema:
        type: integer
        default: 100
  securitySchemes:
    AppId:
      type: apiKey
      in: header
      name: x-app-id
      description: Soundcharts application identifier.
    ApiKey:
      type: apiKey
      in: header
      name: x-api-key
      description: Soundcharts API key.