Skip to content
Ads APIReferences / targets / Get Genre Targets

Get Genre Targets

Returns genre information. If no query parameter is provided, all genres will be returned.

Request

  • ids
    array of strings

    A list of unique identifiers for genres.

    Example: ids=rock&ids=jazz
  • q
    string

    Query to search by keyword via case-insensitive wildcard matching.

    Example: q=query

Response

A list of genres.

    • id
      string
    • name
      string
curl --request GET \
  --url 'https://api-partner.spotify.com/ads/v2/targets/genres?q=query' \
  --header 'Authorization: Bearer 1POdFZRZbvb...qqillRxMr2z'

Response sample

{  "genres": [    {      "id": "rock",      "name": "Rock"    }  ]}