Get sound effects by category
GET/v0/sound-effects/categories/:categoryId/tracks
Use the sound effects details endpoint to display all sound effects for a given category.
Request
Path Parameters
Category id
Query Parameters
Index of the entry track in the response
Max number of entries returned in the response, default 50 and max 100
Possible values: [title
, newest
, length
]
Sort
newest
Possible values: [asc
, desc
]
Order
asc
Responses
- 200
- 400
- 401
- 404
- 429
List of sound effects for a given category
- application/json
- Schema
- Example (from schema)
- Example
Schema
Array [
]
soundEffects
object[]
required
images
object
pagination
object
required
links
object
required
{
"soundEffects": [
{
"id": "string",
"title": "string",
"added": "2024-07-29T15:51:28.071Z",
"length": 0,
"images": {
"default": "string",
"L": "string",
"M": "string",
"S": "string",
"XS": "string"
}
}
],
"pagination": {
"page": 0,
"limit": 0,
"offset": 0
},
"links": {
"next": "string",
"prev": "string"
}
}
{
"soundEffects": [
{
"id": "08398121-3c8c-4757-af69-e25ace977ef5",
"title": "Applause",
"added": "2024-10-11T09:01:46.697501881Z",
"length": 10,
"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"
}
}
],
"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"
}
Category was not found.
- 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": "Category was not found"
}
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"
}