> ## Documentation Index
> Fetch the complete documentation index at: https://omnicron.mintlify.site/llms.txt
> Use this file to discover all available pages before exploring further.

# Song Recognition

> Identify any song using the Shazam algorithm.

<Card title="Song Recognition" icon="magnifying-glass-music">
  Omnicron leverages the powerful Shazam algorithm to provide accurate and efficient song recognition. Simply input a snippet of audio, and Omnicron will quickly identify the song.
</Card>

### How to use

Navigate to the endpoint `api/v1/shazam`.

```sh curl theme={null}
curl -X POST http://localhost:9000/api/v1/shazam \
  -H "Authorization: Bearer MY_API_KEY" \
  -H "Content-Type: multipart/form-data" \
  -f file: audio-snippet
```

<Info>For details about the parameters, visit the [song recognition reference page](/api-reference/endpoint/shazam).</Info>
