---
title: "List genres"
method: GET
path: "/v0/genres"
tags: ["Browse & search"]
---

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

## Query parameters

- `sort` 'alphabetic' | 'relevance'
- `order` 'asc' | 'desc'
- `type` 'all' | 'featured' | 'partner-tier'
- `limit` integer
- `offset` integer

## Response `200`

Track genres response

- GenresWithImagesPaginatedResponse
  - `genres` GenreResponseWithImages[], required
    - `id` string, required
    - `name` string, required
    - `parent` ParentGenreResponseWithImages
      - `id` string, required
      - `name` string, required
      - `images` GenreImagesResponse
        - `default` string
        - `M` string, nullable
        - `L` string, nullable
        - `S` string, nullable
        - `XS` string, nullable
    - `images` GenreImagesResponse
      - `default` string
      - `M` string, nullable
      - `L` string, nullable
      - `S` string, nullable
      - `XS` string, nullable
  - `pagination` Pagination, required
    - `page` integer, required
    - `limit` integer, required
    - `offset` integer
  - `links` PaginationLinks, required
    - `next` string, nullable
    - `prev` string, nullable

## Other responses

- `401` — Unauthorized. Most likely your access token has expired.
- `429` — Rate limit exceeded.

---

[API](https://skmtc.net/epidemicsound/apis/partner-content-api.md) · [All operations](https://skmtc.net/epidemicsound/apis/partner-content-api/llms.txt) · [OpenAPI document](https://skmtc-service-staging.skmtc.workers.dev/v1/apis/epidemicsound/partner-content-api/revisions/c2fa1c98dbc2/schema)
