Search sound effects
GET/v0/sound-effects/search
Use the sound effects search endpoint to allow users to search within the sound effects library.
Request
Query Parameters
Index of the entry track in the response
Max number of entries returned in the response, default 50 and max 100
Term for search
Possible values: [best-match
, newest
, popular
, length
, title
]
Sort for search
best-match
Possible values: [asc
, desc
]
Order
asc
Responses
- 200
- 400
- 401
- 429
List of sound effect search results
- 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": "eda0ffec-6381-4aa8-a261-8aa22d914728",
"title": "Applause",
"added": "2024-10-11T09:01:46.700986371Z",
"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"
}
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"
}