AudD

AudD is a music recognition service that identifies songs from audio files, URLs, or microphone input via a simple REST API. The api.audd.io API returns rich track metadata (artist, title, album, ISRC, links to Apple Music, Spotify, Deezer and more), supports recognition by humming/singing, lyrics search, and an enterprise endpoint for scanning long audio and video files.

5 APIs 0 Features
MusicMusic RecognitionAudioFingerprintingLyrics

APIs

AudD Music Recognition API

Identifies music from an audio file upload, a remote audio/video URL, or base64-encoded audio. Returns artist, title, album, release date, label, timecode, and optional metadata...

AudD Recognize with Offset API

Recognition variant that returns the offset (position) of the matched fragment within the submitted audio, also used as the method for recognition by humming or singing a melody.

AudD Humming Recognition API

Identifies a song from a recording of a person humming or singing the melody, delivered through the recognizeWithOffset method against the AudD humming database.

AudD Enterprise File Scan API

Enterprise endpoint that scans hours- or days-long audio and video files in 12-second chunks, returning every matched song with timecodes, offsets, and detailed metadata. Suppor...

AudD Lyrics API

Searches for song lyrics by title, artist, or an excerpt of the lyrics via the findLyrics method, returning matching songs with full lyrics and metadata.

Collections

Pricing Plans

Audd Plans Pricing

4 plans

PLANS

Rate Limits

Audd Rate Limits

4 limits

RATE LIMITS

FinOps

Audd Finops

FINOPS

Resources

👥
GitHubOrganization
GitHubOrganization
🔗
LinkedIn
LinkedIn
🔗
Website
Website
🔗
Documentation
Documentation
🔗
Plans
Plans
🔗
RateLimits
RateLimits
🔗
FinOps
FinOps

Sources

Raw ↑
opencollection: 1.0.0
info:
  name: AudD Music Recognition API
  version: '1.0'
request:
  auth:
    type: apikey
    key: api_token
    value: '{{api_token}}'
    in: query
items:
- info:
    name: Recognition
    type: folder
  items:
  - info:
      name: Recognize music from a file, URL, or base64 audio.
      type: http
    http:
      method: POST
      url: https://api.audd.io/
      body:
        type: multipart-form
        data:
        - name: api_token
          value: '{{api_token}}'
        - name: url
          value: ''
        - name: return
          value: apple_music,spotify
    docs: Identifies a song from a short audio sample provided as a file upload, a remote url, or a base64-encoded audio string.
  - info:
      name: Recognize with offset (also used for humming recognition).
      type: http
    http:
      method: POST
      url: https://api.audd.io/recognizeWithOffset/
      body:
        type: multipart-form
        data:
        - name: api_token
          value: '{{api_token}}'
        - name: url
          value: ''
    docs: Recognition variant that returns the offset of the matched fragment within the submitted audio; also the method
      used for recognition by humming or singing.
- info:
    name: Lyrics
    type: folder
  items:
  - info:
      name: Find lyrics by title, artist, or excerpt.
      type: http
    http:
      method: POST
      url: https://api.audd.io/findLyrics/
      body:
        type: multipart-form
        data:
        - name: api_token
          value: '{{api_token}}'
        - name: q
          value: ''
    docs: Searches for songs and their lyrics by title and artist or by an excerpt of the lyrics.
- info:
    name: Enterprise
    type: folder
  items:
  - info:
      name: Scan a long audio/video file for all songs.
      type: http
    http:
      method: POST
      url: https://enterprise.audd.io/
      body:
        type: multipart-form
        data:
        - name: api_token
          value: '{{api_token}}'
        - name: url
          value: ''
        - name: accurate_offsets
          value: 'true'
    docs: Enterprise endpoint that scans hours- or days-long audio and video files in 12-second chunks, returning every matched
      song with timecodes, offsets, and metadata.
bundled: true