AudD Music Recognition API Docs
Introduction
AudD® is music recognition API.
For the live music recognition for audio streams, see docs for audio streams (useful if you want to identify music playing on radio stations, audio and video streams, etc.; e.g., if you want to monitor airplay, check live streams for copyright, create radio charts, now playing widgets, or bots for YouTube and Twitch streams).
We have a separate API endpoint that accepts large audio and video files (even hours-long mixes or days-long recordings) and recognizes all the tracks in them: see docs for the enterprise endpoint (useful for some types of UGC and other content you might want to check against our copyrighted music DB).
You can send all the requests and all the parameters by GET and POST, in a query or a request body.
api_token
— the auth token. It's required for all API requests. Sign up on the Dashboard to get one.
API methods
Please note that the api.audd.io endpoint has API methods for audio streams and other methods that aren't published on this page. See the docs for audio streams or work with your AudD contact to coordinate access to the docs.
post/getrecognize
https://api.audd.io/
recognize
is the default API method. It allows identifying music in audio, just like Shazam. A file is required: see #Sending files or the Code examples tab below.
- Request
- Response
- Code examples
string
string
binary
string
integer
{
"status": "success",
"result": {
"artist": "Imagine Dragons",
"title": "Warriors",
"album": "Warriors",
"release_date": "2014-09-18",
"label": "Universal Music",
"timecode": "02:32",
"song_link": "https://lis.tn/Warriors",
"apple_music": {
"previews": [
{
"url": "https://audio-ssl.itunes.apple.com/itunes-assets/AudioPreview118/v4/65/07/f5/6507f5c5-dba8-f2d5-d56b-39dbb62a5f60/mzaf_1124211745011045566.plus.aac.p.m4a"
}
],
"artwork": {
"width": 1500,
"height": 1500,
"url": "https://is2-ssl.mzstatic.com/image/thumb/Music128/v4/f4/78/f5/f478f58e-97cf-83b5-b5da-03d31f14e648/00602547623805.rgb.jpg/{w}x{h}bb.jpeg",
"bgColor": "7f5516",
"textColor1": "ffe2aa",
"textColor2": "f8e0bd",
"textColor3": "e5c58c",
"textColor4": "e0c59c"
},
"artistName": "Imagine Dragons",
"url": "https://music.apple.com/us/album/warriors/1440831203?i=1440831624",
"discNumber": 1,
"genreNames": [
"Alternative",
"Music"
],
"durationInMillis": 170799,
"releaseDate": "2014-09-18",
"name": "Warriors",
"isrc": "USUM71414163",
"albumName": "Smoke + Mirrors (Deluxe)",
"playParams": {
"id": "1440831624",
"kind": "song"
},
"trackNumber": 18,
"composerName": "Imagine Dragons, Alex Da Kid & Josh Mosser"
},
"spotify": {
"album": {
"album_type": "album",
"artists": [
{
"external_urls": {
"spotify": "https://open.spotify.com/artist/53XhwfbYqKCa1cC15pYq2q"
},
"href": "https://api.spotify.com/v1/artists/53XhwfbYqKCa1cC15pYq2q",
"id": "53XhwfbYqKCa1cC15pYq2q",
"name": "Imagine Dragons",
"type": "artist",
"uri": "spotify:artist:53XhwfbYqKCa1cC15pYq2q"
}
],
"available_markets": null,
"external_urls": {
"spotify": "https://open.spotify.com/album/6ecx4OFG0nlUMqAi9OXQER"
},
"href": "https://api.spotify.com/v1/albums/6ecx4OFG0nlUMqAi9OXQER",
"id": "6ecx4OFG0nlUMqAi9OXQER",
"images": [
{
"height": 640,
"url": "https://i.scdn.co/image/d3acaeb069f37d8e257221f7224c813c5fa6024e",
"width": 640
},
{
"height": 300,
"url": "https://i.scdn.co/image/b039549954758689330893bd4a92585092a81cf5",
"width": 300
},
{
"height": 64,
"url": "https://i.scdn.co/image/67407947517062a649d86e06c7fa17670f7f09eb",
"width": 64
}
],
"name": "Smoke + Mirrors (Deluxe)",
"release_date": "2015-10-30",
"release_date_precision": "day",
"total_tracks": 21,
"type": "album",
"uri": "spotify:album:6ecx4OFG0nlUMqAi9OXQER"
},
"artists": [
{
"external_urls": {
"spotify": "https://open.spotify.com/artist/53XhwfbYqKCa1cC15pYq2q"
},
"href": "https://api.spotify.com/v1/artists/53XhwfbYqKCa1cC15pYq2q",
"id": "53XhwfbYqKCa1cC15pYq2q",
"name": "Imagine Dragons",
"type": "artist",
"uri": "spotify:artist:53XhwfbYqKCa1cC15pYq2q"
}
],
"available_markets": null,
"disc_number": 1,
"duration_ms": 170066,
"explicit": false,
"external_ids": {
"isrc": "USUM71414163"
},
"external_urls": {
"spotify": "https://open.spotify.com/track/1lgN0A2Vki2FTON5PYq42m"
},
"href": "https://api.spotify.com/v1/tracks/1lgN0A2Vki2FTON5PYq42m",
"id": "1lgN0A2Vki2FTON5PYq42m",
"is_local": false,
"name": "Warriors",
"popularity": 66,
"track_number": 18,
"type": "track",
"uri": "spotify:track:1lgN0A2Vki2FTON5PYq42m"
}
}
}
The return
parameter is for comma-separated identifiers of the additional metadata you want to be returned. The identifiers you can send: musicbrainz
– MusicBrainz metadata; apple_music
, spotify
, deezer
, napster
– Apple Music, Spotify, Deezer, Napster data and links respectively. Example: apple_music,spotify
.
GET
requestsYou can also send GET requests, even though it's better to send the parameters in the POST body. Here's an example:
https://api.audd.io/?url=https://audd.tech/example1.mp3&return=apple_music,spotify&api_token=your%20api%20token
Just don't forget to url-encode the parameters.
Sending files
For the recognize
API method, you have to send a file for recognition. There are three ways to send files to our API:
- Provide an HTTP URL for the file to be recognized. Our server will download the file and identify the music. Send the URL in the
url
parameter as a string. The parameter can be sent either in the request body or query parameters, by GET or POST. We highly recommend sending files this way. If the file is available by URL, it's the easiest way to send it. - Post the file using multipart/form-data in the usual way browsers upload files. Send the file in the
file
parameter, by POST. We recommend sending a file this way when the file is not available by a URL (for example, if they are recorded locally or are not on a server). - Send a base64 encoded file in the
audio
parameter, as a string, by POST. We discourage using this parameter and even don't list it on this page in the method descriptions, but we still support it as it can be useful in some frontend applications.
There are code examples for the first two ways in the Code examples tab of the API method description. Our custom GPT can help you write code.
The API also supports async WebSockets: connect to wss://api.audd.io/ws/?api_token=[token]
and send multiple requests (with files in binary form) without waiting for the server's responses/results.
Responses explained
By default, the API responses are in JSON format.
All the responses contain the status
field that equals either "success" if the request was successfully processed or "error" if there's been an error. In case of success, the server always returns the result
field.
If the server has successfully processed the request, but there are no matches, the result
field could be null
or an empty array, depending on the API method.
If there are matches, recognize
method will return a result
that's a structure that always contains artist
, title
, album
, release_date
, label
, timecode
, and song_link
fields. Additionally, it has the data requested in the return
parameter in fields corresponding to the identifiers.
And just in case: timecode
is the time in the recognized song when the fragment you sent is played; song_link
links to a lis.tn song page like lis.tn/Warriors. Please let us know if you need album pages instead of song pages.
Authentication and limits
To send requests, receive a token from the Dashboard. If you don't want to sign up on the Dashboard, if you want to send >500 000 requests per month, we can manually issue a token for you. In this case contact us: api@audd.io, +1(302)283-9101, t.me/AudDhelp.
Where to find code examples
- There are the Code example tabs in each of the request descriptions. You can use them for reference.
- You can search for code examples on GitHub.
- We have a Chrome extension written in JS that recognizes music from the opened tab of your browser. Source code: github.com/AudDMusic/audd-chrome-extension.
- We have a Discord bot written in Go that identifies music from files sent to text channels and music broadcasted on voice channels: github.com/AudDMusic/discord-bot.
Common errors
We have about 40 different error codes. The API returns the errors with an explanation of what happened. The common errors:
- #901 — No api_token passed, and the limit was reached (you need to obtain an
api_token
). - #900 — Wrong API token (check the
api_token
parameter). - #600 — Incorrect audio url.
- #700 — You haven't sent a file for recognition (or we didn't receive it). If you use the POST HTTP method, check the Content-Type header: it should be
multipart/form-data
; also check the URL you're sending requests to: it should start with https:// (http:// requests get redirected and we don't receive any data from you when your code follows the redirect). - #500 — Incorrect audio file.
- #400 — Too big audio file. 10M or 25 seconds is the maximum. We recommend recording no more than 20 seconds (usually, it takes less than one megabyte). If you need to recognize larger audio files, use the enterprise endpoint instead, it supports even days-long files.
- #300 — Fingerprinting error: there was a problem with audio decoding or with the neural network. Possibly, the audio file is too small.
- #100 — An unknown error. Contact us in this case.
Support
Reach out to api@audd.io if you need any help.