Tracks
Tracks based on image
Upload an image from the user's video to get recommendations of tracks in the Epidemic Sound library that would work for the video. Use ImageID retrieved from the Upload Image endpoint to fetch the recommended tracks.
get/v0/tracks/matching-image/{imageId}
Path parameters
imageIdstring required
Image id
Query parameters
offsetinteger
Index of the entry track in the response
limitinteger
Max number of entries returned in the response, default 50 and max 100
genrestring[]
Id for genre
moodstring[]
Id for mood
filterBehaviour'allOf' | 'anyOf'
Control how the API combines several values of the same filter, such as two moods or two genres.
- allOf returns only tracks that match every value. This is the default.
- anyOf returns tracks that match at least one value, which widens the result set.
The vocalType filter always combines its values with anyOf.
Response
Paginated list of tracks
Changes
Changed in 1 of the 7 revisions of this API.1
- ○
added the new optional
queryrequest parameterfilterBehaviournew-optional-request-parameter
- ○