Get a list of all sound effects categories
GET/v0/sound-effects/categories
The sound effects categories endpoint allows you to get a list of all sound effects categories.
You can then browse the sound effects catalog based on categories like "Applause" or "Crowds".
Some sound effect categories have cover art that you can use in your interface. You can choose to display all categories, or choose type “featured” to only show the categories that are chosen by our curation team.
Request
Query Parameters
Possible values: [all
, featured
]
Category type
all
Index of the entry track in the response
Max number of entries returned in the response, default 50
Responses
- 200
- 400
- 401
- 429
Sound effects category list with related parent category. You can see the parent-child relationship in the response.
- application/json
- Schema
- Example (from schema)
- Example
Schema
Array [
]
categories
object[]
required
images
object
parent
object
pagination
object
required
links
object
required
{
"categories": [
{
"id": "3fa85f64-5717-4562-b3fc-2c963f66afa6",
"name": "string",
"images": {
"default": "string",
"L": "string",
"M": "string",
"S": "string",
"XS": "string"
},
"parent": {
"id": "3fa85f64-5717-4562-b3fc-2c963f66afa6",
"name": "string"
}
}
],
"pagination": {
"page": 0,
"limit": 0,
"offset": 0
},
"links": {
"next": "string",
"prev": "string"
}
}
{
"categories": [
{
"id": "6daa4e2d-cb59-448e-8f58-5c415673f9af",
"name": "Applause",
"images": {
"default": "https://image.url?w=300&h=300&fit=fill&q=90&fm=jpg",
"L": "https://image.url?w=1050&h=1050&fit=fill&q=90&fm=jpg",
"M": "https://image.url?w=600&h=600&fit=fill&q=90&fm=jpg",
"S": "https://image.url?w=300&h=300&fit=fill&q=90&fm=jpg",
"XS": "https://image.url?w=128&h=128&fit=fill&q=90&fm=jpg"
},
"parent": {
"id": "c98262eb-b9b7-40a1-af56-f8381bb0565b",
"name": "Crowds"
}
}
],
"pagination": {
"page": 2,
"limit": 10,
"offset": 10
},
"links": {
"next": "/v0/sound-effects/categories?limit=10&offset=20",
"prev": "/v0/sound-effects/categories?limit=10&offset=0"
}
}
Bad request.
- application/json
- Schema
- Example (from schema)
- Example
Schema
Array [
]
Human readable message
errors
object[]
Error key
Error messages
{
"message": "string",
"errors": [
{
"key": "string",
"messages": [
"string"
]
}
]
}
{
"message": "Bad request"
}
Unauthorized. Most likely your access token has expired.
- application/json
- Schema
- Example (from schema)
- Example
Schema
Array [
]
Human readable message
errors
object[]
Error key
Error messages
{
"message": "string",
"errors": [
{
"key": "string",
"messages": [
"string"
]
}
]
}
{
"message": "Invalid credentials"
}
Rate limit exceeded.
- application/json
- Schema
- Example (from schema)
- Example
Schema
Array [
]
Human readable message
errors
object[]
Error key
Error messages
{
"message": "string",
"errors": [
{
"key": "string",
"messages": [
"string"
]
}
]
}
{
"message": "Rate limit exceeded"
}