Product

How Jentic Works

From API assessment to production deployment in four simple steps.

Product Overview

PLATFORM

Jentic OneSelf-hosted, open-source control plane between your agents and any APIAPI DirectoryBrowse 10,000+ APIs ready for AI agent integrationAPI ScorecardAssess your APIs for AI-readiness with automated scoringAgentic SandboxSafely simulate AI agents with your production APIsJenticSign in to the Jentic web app

CAPABILITIES

IntegrationConnect AI agents to your existing systemsWorkflowsDiscover and capture successful agent workflowsGovernanceDefine, observe, and enforce AI policies

TOOLS

Arazzo UIVisualize Arazzo workflows as interactive documentationArazzo EditorBuild and edit multi-step API workflows visually
Pricing
Developers

GET STARTED

DocumentationGuides and API referenceQuickstartGet up and running in minutes

COMMUNITY

GitHubOpen source projects and examples
Resources
BlogLatest articles and insightsPress & MediaBrand assets and press contactOpen StandardsBuilt on open specs. Never locked in.NewsletterAPIs, AI agents, mixed with architecture and strategy.
Company
About UsOur mission and teamCareersJoin our teamContactGet in touch
Install Jentic OneBook a Demo
How Jentic WorksJentic OneAPI DirectoryAPI ScorecardAgentic SandboxJenticIntegrationWorkflowsGovernanceArazzo UIArazzo Editor
Pricing
DocumentationQuickstartGitHub
BlogPress & MediaOpen StandardsNewsletter
About UsCareersContact
Request a demoInstall Jentic One
Jentic
For Enterprises
  • Product Overview
  • Agentic Sandbox
  • Book a Demo
For Developers
  • Jentic One
  • Documentation
  • GitHub
Company
  • About Jentic
  • Careers
  • Contact Us
ISO/IEC 27001:2022 certification badge issued by Prescient Security

Information Security Management System

Certified to ISO/IEC 27001:2022 by Prescient Security

Terms & Conditions•Privacy Policy•
© 2026 Jentic. All rights reserved.
APIs / Media / Partner Content API
Partner Content API logo

Epidemicsound Partner Content API

★ Only Publicly Available OpenAPI DocumentMediaAudio Processingbearer7 EndpointsREST

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.

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 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.

Jentic One on GithubView OpenAPI Document

Install Jentic One Beta

Connect the Partner Content API to your agent

Jentic One is a self-hosted execution layer for AI agents. It lets your agent call the Partner Content API, or any other public or private API you need. You set the rules, the agent never sees your credentials, and every call is logged.

Two steps, two machines. Install the instance in a safe environment, then register your agent from wherever it runs.

1

Step 1: Jentic One Host machine

# On the machine that will host your Jentic One instance:
curl -fsSL https://raw.githubusercontent.com/jentic/jentic-one/main/tools/install.sh | sh
2

Step 2: Agent machine

# On the machine where your agent runs (keep this separate from the instance):
curl -fsSL https://raw.githubusercontent.com/jentic/jentic-one/main/tools/install.sh | sh
jentic register       # connects your agent to your Jentic One instance

Jentic One is in public beta. The setup above keeps your agent separate from the instance, which is what you want before using real credentials: an agent running as the same OS user as Jentic One can read its stored keys directly. Just evaluating? A single local install is fine to start. See the secure deployment guide for the tiers.

Capabilities

What an agent can do with Partner Content 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

Filter tracks by combination of mood plus BPM range for production briefs

Use Cases

Patterns agents use Partner Content 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.

Key Endpoints

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

GET

/v0/tracks

List tracks filtered by mood, genre, or BPM

GET

/v0/tracks/search

Free-text track search

GET

/v0/tracks/search/suggestions

Autosuggest completions

GET

/v0/collections

List curated collections

GET

/v0/collections/{collectionId}

Get tracks in a collection

GET

/v0/moods

List moods used to tag tracks

GET

/v0/tracks/parameters

List track filter parameters

GET

/v0/tracks

List tracks filtered by mood, genre, or BPM

GET

/v0/tracks/search

Free-text track search

GET

/v0/tracks/search/suggestions

Autosuggest completions

GET

/v0/collections

List curated collections

GET

/v0/collections/{collectionId}

Get tracks in a collection

GET

/v0/moods

List moods used to tag tracks

GET

/v0/tracks/parameters

List track filter parameters

Why Jentic?

Three things that make agents converge on Jentic-routed access.

Credential management

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

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

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.

Related APIs

Alternatives and complements available in the Jentic catalogue.

Complementary

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.

Complementary

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.

Complementary

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.

FAQs

Specific to using Partner Content 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.

GET STARTED

Start building with Partner Content API

Explore with Jentic
View OpenAPI Document