For Agents
Search Epidemic Sound's licensed music catalogue by mood, genre, and BPM, browse curated collections, and surface track metadata. Authenticate with an HTTP bearer token.
Get started with Partner Content API in minutes using your preferred integration method.
# Add to your MCP client config (Claude Desktop, Cursor, Windsurf)
{
"jentic": {
"url": "https://api.jentic.com/mcp",
"auth": "oauth"
}
}
# Then ask your agent:
"search music by mood and bpm"
# → Jentic returns the GET /events tool with parameter schema, agent executes.What an agent can do with Partner Content API API.
Search the music catalogue by mood, genre, BPM, and free-text query
Browse curated collections and pull collection-level track listings
Retrieve autosuggest completions for a partial search query
List the mood taxonomy used by the catalogue
Inspect available track parameters before constructing a search filter
GET STARTED
Use for: Search Epidemic Sound for upbeat tracks between 120 and 130 BPM, Browse the curated collections in the catalogue, Get track suggestions for the search term 'cinematic', List all available moods in the catalogue
Not supported: Does not handle music licensing purchases, royalty payouts, or audio stem editing — use for catalogue search and metadata retrieval only.
Jentic publishes the only available OpenAPI document for Partner Content API, keeping it validated and agent-ready.
Jentic publishes the only available OpenAPI specification for the Epidemic Sound Partner Content API, keeping it validated and agent-ready. The Partner Content API exposes Epidemic Sound's licensed music catalogue to integrators, with seven endpoints covering curated collections, track search by mood, genre, and BPM, autosuggest, mood lists, and parameter discovery. Authentication is via two HTTP bearer schemes (UserAuth and EpidemicSoundConnectAuth) so partners can act on behalf of either their own service or a connected creator account. Responses include track metadata suitable for downstream catalogue indexing or playback initiation.
Filter tracks by combination of mood plus BPM range for production briefs
Patterns agents use Partner Content API API for, with concrete tasks.
★ Music Discovery for Video Production Workflows
Video editors and creator tools need to surface licensed music that matches the tone of a clip. Epidemic Sound's GET /v0/tracks endpoint accepts mood, genre, and BPM filters, so an agent can take a brief like 'upbeat corporate, 120-130 BPM' and return a shortlist of legally licensable tracks with metadata for direct download.
Call GET /v0/tracks with mood=happy, bpm_min=120, bpm_max=130 and return the top 20 matches with title, artist, and duration.
Building a Curated Playlist Catalogue Index
Partner platforms embedding Epidemic Sound need to mirror the curated collections in their own UI. The /v0/collections and /v0/collections/{collectionId} endpoints return collection metadata and track listings respectively, so an agent can refresh a catalogue index daily without scraping the web app.
Call GET /v0/collections, then for each collection call GET /v0/collections/{collectionId} and store the returned track list in a local cache.
Search Autosuggest for a Music Picker UI
Editor UIs benefit from search autosuggest that completes a partial query into a real catalogue match. The GET /v0/tracks/search/suggestions endpoint returns suggested terms, so an agent driving a search box can keep latency low and steer users toward catalogue-aligned phrasing.
Call GET /v0/tracks/search/suggestions with q='cine' and return the top 5 suggested terms for the type-ahead UI.
AI Agent Soundtrack Picker via Jentic
An AI editing assistant can be wired through Jentic to recommend licensed music for a clip's mood. The agent searches by intent (for example 'find upbeat tracks 120 BPM'), loads the schema, and executes against the Partner Content API using a bearer token stored in the vault. The result is a list of candidate tracks the editor can drop into the timeline.
Use Jentic search('search music by mood and bpm'), load the GET /v0/tracks operation, and execute it with mood=cinematic and bpm_min=80, bpm_max=100.
7 endpoints — jentic publishes the only available openapi specification for the epidemic sound partner content api, keeping it validated and agent-ready.
METHOD
PATH
DESCRIPTION
/v0/tracks
List tracks filtered by mood, genre, or BPM
/v0/tracks/search
Free-text track search
/v0/tracks/search/suggestions
Autosuggest completions
/v0/collections
List curated collections
/v0/collections/{collectionId}
Get tracks in a collection
/v0/moods
List moods used to tag tracks
/v0/tracks/parameters
List track filter parameters
/v0/tracks
List tracks filtered by mood, genre, or BPM
/v0/tracks/search
Free-text track search
/v0/tracks/search/suggestions
Autosuggest completions
/v0/collections
List curated collections
/v0/collections/{collectionId}
Get tracks in a collection
Three things that make agents converge on Jentic-routed access.
Credential isolation
Both bearer tokens (UserAuth and EpidemicSoundConnectAuth) are stored encrypted in the Jentic vault. Agents receive a scoped reference; the raw token is injected at execution time and never appears in the model context.
Intent-based discovery
Agents search by intent (for example 'find upbeat music 120 BPM') and Jentic returns the matching Partner Content operation along with its parameter schema, so the agent picks the right endpoint without parsing the docs.
Time to first call
Direct integration: 1-2 days for dual-auth handling and pagination of collection listings. Through Jentic: under 30 minutes — search, load, execute.
Alternatives and complements available in the Jentic catalogue.
Eranol API
FFmpeg-based video and audio processing — pairs with music search to mix tracks into a video
Choose when an agent needs to download an Epidemic Sound track and mix it into a generated video clip.
EODHD Financial Data API
Market data — irrelevant to music workflows but illustrates Jentic catalogue breadth
Skip unless an agent unifies media briefs with public-company brand data.
Esendex Messaging API
SMS — pair with creator workflows to notify a creator their music brief is ready
Use when an agent needs to text a creator the link to a finished video that used Epidemic Sound music.
Specific to using Partner Content API API through Jentic.
Why is there no official OpenAPI spec for the Epidemic Sound Partner Content API?
Epidemic Sound provides developer documentation but does not publish an OpenAPI specification. Jentic generates and maintains this spec so that AI agents and developers can call the Partner Content API via structured tooling. It is validated against the live API and kept up to date. Get started at https://app.jentic.com/sign-up.
What authentication does the Epidemic Sound Partner Content API use?
The API uses two HTTP bearer schemes: UserAuth for partner-service tokens and EpidemicSoundConnectAuth for delegated creator tokens. Through Jentic both are stored encrypted in the MAXsystem vault and injected at execution time.
Can I search tracks by BPM and mood with the Partner Content API?
Yes. GET /v0/tracks accepts mood, genre, and BPM range filters. You can list valid moods with GET /v0/moods and the full filter schema with GET /v0/tracks/parameters.
What are the rate limits for the Epidemic Sound Partner Content API?
Rate limits are governed by the partner agreement and not encoded in the spec. Expect a per-second cap on search endpoints; back off when a 429 status is returned.
How do I retrieve a curated collection through Jentic?
Search 'get tracks in a collection'. Jentic returns the GET /v0/collections/{collectionId} operation, you load its schema, and execute with the collection ID. The bearer token is injected from the vault.
Does the API support search autosuggest for type-ahead UIs?
Yes. GET /v0/tracks/search/suggestions accepts a partial query string and returns suggested completions suitable for a type-ahead control.
/v0/moods
List moods used to tag tracks
/v0/tracks/parameters
List track filter parameters