Getting Started

Everything you need to integrate Cambrian music licensing

1. Get Your API Key

Sign in to your Cambrian account and navigate to /dashboard/api-keys to generate an API key.

API keys start with cbr_ and are shown only once. Store them securely.

2. Set Your Base URL

All API requests go to the same base URL:

https://api.cambrianmusic.com/api/v1

Use this URL for all endpoint calls in production.

3. Authenticate Your Requests

Include your API key in the X-API-Key header:

curl https://api.cambrianmusic.com/api/v1/tracks \
  -H "X-API-Key: cbr_your_key_here"

4. Make Your First Request

Search for a track by genre:

curl "https://api.cambrianmusic.com/api/v1/tracks?genre=Electronic" \
  -H "X-API-Key: cbr_your_key_here"

The response contains track metadata, including pricing for each license tier.

Next Steps