Kumospace MusicTrack API

The MusicTrack API from Kumospace — 2 operation(s) for musictrack.

Operations 2

POST /v1/musicTracks Adds a new music track to the available tracks collection. #
PUT /v1/musicTracks/{id} Updates the provided fields on an existing music track. Fields omitted are untouched. #

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/kumospace-musictrack-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

kumospace-musictrack-api-openapi.yml Raw ↑
openapi: 3.2.0
info:
  title: '@kumo/api Account Music Track API'
  contact: {}
servers:
- url: /
tags:
- name: MusicTrack
paths:
  /v1/musicTracks:
    post:
      operationId: CreateMusicTrack
      responses:
        '201':
          description: Created
      description: Creates a new music track. Can only be called by kumospace admins.
      summary: Adds a new music track to the available tracks collection.
      tags:
      - MusicTrack
      security:
      - firebase: []
      parameters: []
      requestBody:
        required: true
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/ApiCreateMusicTrackRequest'
  /v1/musicTracks/{id}:
    put:
      operationId: UpdateMusicTrack
      responses:
        '204':
          description: No content
      description: Updates an existing music track. Can only be called by kumospace admins.
      summary: Updates the provided fields on an existing music track. Fields omitted are untouched.
      tags:
      - MusicTrack
      security:
      - firebase: []
      parameters:
      - in: path
        name: id
        required: true
        schema:
          type: string
      requestBody:
        required: true
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/ApiUpdateMusicTrackRequest'
components:
  schemas:
    ApiUpdateMusicTrackRequest:
      properties:
        category:
          $ref: '#/components/schemas/MusicTrackCategory'
          description: A categorical type for the track. e.g. piano music, dance music, general.
        volumeModifier:
          type: number
          format: double
          description: 'Normalizes the volume level for tracks. This is to keep some tracks from playing

            either too quiet or too loud.'
        url:
          type: string
          description: CDN URL for the track audio file.
        name:
          type: string
          description: User-visible name of the track.
      type: object
    MusicTrackCategory:
      enum:
      - piano
      - dance
      - general
      type: string
    ApiCreateMusicTrackRequest:
      properties:
        category:
          $ref: '#/components/schemas/MusicTrackCategory'
          description: A categorical type for the track. e.g. piano music, dance music, general.
        volumeModifier:
          type: number
          format: double
          description: 'Normalizes the volume level for tracks. This is to keep some tracks from playing

            either too quiet or too loud.'
        url:
          type: string
          description: CDN URL for the track audio file.
        name:
          type: string
          description: User-visible name of the track.
      required:
      - category
      - volumeModifier
      - url
      - name
      type: object
  securitySchemes:
    firebase:
      type: http
      scheme: bearer
      bearerFormat: JWT