API v1

Modern API docs for building with music data.

Explore structured metadata, audio features, lyrics, waveform data, artwork colors, and recommendation endpoints with a cleaner, implementation-ready reference.

Base URL

https://api.tune.dev/v1

Versioned REST surface for all public endpoints.

Authentication

Bearer token

Pass your Tune API key on every request.

Reliability

Stable IDs

All resources use durable Tune UUIDs.

Quick start

Make your first request

shell
curl https://api.tune.dev/v1/tracks?limit=10 \
  -H "Authorization: Bearer tune_live_sk_your_key" \
  -H "Accept: application/json"

What you can build

Common product patterns

Catalog enrichment for internal label, creator, and ops tools.
Search and discovery experiences powered by metadata and audio features.
Recommendations, visualizations, and adaptive UI color systems.
Reference

Browse endpoint groups

15 endpoints

Errors

Standard error envelope

StatusCodeDescription
400bad_requestInvalid or malformed request parameters.
401unauthorizedMissing or invalid API key.
404not_foundRequested resource was not found.
429rate_limitedToo many requests. Retry later.
500internal_errorUnexpected server error.
Example error response
{
  "error": {
    "code": "not_found",
    "message": "No track found with the provided tune_id",
    "status": 404
  }
}