Songstats Info API

The Info API from Songstats — 3 operation(s) for info.

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/songstats-info-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 email required.

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

OpenAPI Specification

songstats-info-api-openapi.yml Raw ↑
openapi: 3.0.3
info:
  title: Songstats Enterprise Artists Info API
  description: The Songstats Enterprise API provides music data analytics for artists, tracks, labels, and collaborators across all major streaming platforms. Endpoints return JSON data including current stats, historic stats, audience details, catalog, activities, and playlist data. Used by music industry professionals to build dashboards, reports, and data-driven tools.
  version: 1.0.0
  contact:
    name: Songstats API Support
    email: api@songstats.com
    url: https://songstats.com/for/developers
  termsOfService: https://songstats.com/terms
servers:
- url: https://api.songstats.com/enterprise/v1
  description: Songstats Enterprise API
security:
- ApiKeyAuth: []
tags:
- name: Info
paths:
  /info/sources:
    get:
      operationId: getInfoSources
      summary: Get Available Sources
      description: Returns list of available streaming platform sources
      tags:
      - Info
      responses:
        '200':
          description: List of available sources
          content:
            application/json:
              schema:
                type: array
                items:
                  $ref: '#/components/schemas/SourceInfo'
        '401':
          description: Unauthorized
  /info/status:
    get:
      operationId: getInfoStatus
      summary: Get API Status
      description: Returns current API status
      tags:
      - Info
      responses:
        '200':
          description: API status
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/StatusResponse'
  /info/definitions:
    get:
      operationId: getInfoDefinitions
      summary: Get Field Definitions
      description: Returns definitions for all data fields returned by the API
      tags:
      - Info
      responses:
        '200':
          description: Field definitions
          content:
            application/json:
              schema:
                type: object
components:
  schemas:
    StatusResponse:
      type: object
      properties:
        status:
          type: string
          description: API status
    SourceInfo:
      type: object
      description: Available streaming platform sources
      properties:
        source:
          type: string
          description: Platform identifier
        name:
          type: string
          description: Platform display name
  securitySchemes:
    ApiKeyAuth:
      type: apiKey
      in: header
      name: apikey
      description: API key from the Songstats Enterprise dashboard. Contact api@songstats.com for access.