Epidemic Sound · Capability

Epidemic Sound Partner Content API — Authentication

Request partner-scoped and user-scoped tokens. /v0/partner-token mints a bearer token for partner-level operations; /v0/token exchanges Epidemic Sound Connect (OAuth) credentials for a user-scoped token used to drive personalized catalogue access.

Epidemic Sound Partner Content API — Authentication is a Naftiko capability published by Epidemic Sound, one of 9 capabilities the APIs.io network indexes for this provider.

Can be deployed as a REST endpoint, MCP tool, or Agent Skill via Naftiko.

Tagged areas include Epidemic Sound, Authentication, OAuth, and Tokens.

Run with Naftiko Epidemic SoundAuthenticationOAuthTokens

Capability Spec

authentication.yaml Raw ↑
naftiko: 1.0.0-alpha2
info:
  label: Epidemic Sound Partner Content API — Authentication
  description: >-
    Request partner-scoped and user-scoped tokens. /v0/partner-token mints a
    bearer token for partner-level operations; /v0/token exchanges Epidemic
    Sound Connect (OAuth) credentials for a user-scoped token used to drive
    personalized catalogue access.
  tags:
    - Epidemic Sound
    - Authentication
    - OAuth
    - Tokens
  created: '2026-05-25'
  modified: '2026-05-25'
binds:
  - namespace: env
    keys:
      EPIDEMIC_SOUND_API_KEY: EPIDEMIC_SOUND_API_KEY
capability:
  consumes:
    - type: http
      namespace: authentication
      baseUri: https://partner-content-api.epidemicsound.com
      description: Token endpoints for the Partner Content API.
      resources:
        - name: partner-token
          path: /v0/partner-token
          operations:
            - name: requestPartnerToken
              method: POST
              description: Mint a partner-scoped bearer token.
        - name: user-token
          path: /v0/token
          operations:
            - name: requestUserToken
              method: POST
              description: Mint a user-scoped token via Epidemic Sound Connect.
      authentication:
        type: apikey
        key: x-api-key
        value: '{{env.EPIDEMIC_SOUND_API_KEY}}'
        placement: header