Skip to main content

List genres

GET 

/v0/genres

The genres endpoint allows your users to browse the music catalog based on genres like rock, hiphop or acoustic.

Genres are nested and both parent and child genres are returned in the response. Parent genres have cover art that you can show in your interface.

By specifying the “type” of genres you want to display, you can choose to show all genres in the Epidemic Sound library, only the genres that are featured on epidemicsound.com or only the genres that are available for your free tier tracks.

Request

Query Parameters

    sort string

    Possible values: [alphabetic, relevance]

    Sorting options. Available values: alphabetic, relevance

    Default value: relevance
    order string

    Possible values: [asc, desc]

    Order options. Available values: asc, desc

    Default value: asc
    type string

    Possible values: [all, featured, partner-tier]

    Types to filter by:

    • all - all the objects in the Epidemic Sound library
    • partner-tier - objects available to the partner within their tier
    • featured - only objects featured and curated by Epidemic Sound
    Default value: all
    limit int32

    Max number of entries returned in the response, default 20 and max 20

    offset int32

    Index of the entry track in the response

Responses

Track genres response

Schema

    genres

    object[]

    required

  • Array [

  • id stringrequired
    name stringrequired

    parent

    object

    id stringrequired
    name stringrequired

    images

    object

    default string
    L stringnullable
    M stringnullable
    S stringnullable
    XS stringnullable

    images

    object

    default string
    L stringnullable
    M stringnullable
    S stringnullable
    XS stringnullable
  • ]

  • pagination

    object

    required

    page int32required
    limit int32required
    offset int32

    links

    object

    required

    next stringnullable
    prev stringnullable
Loading...