🌙

Shazam Audio Upload API Documentation

This API allows VIP users to upload audio files for processing using Shazam's capabilities. Below are the details on how to use the endpoint for audio file uploads. You can also try uploading an audio file below.

Endpoint: /api/shazam

Method: POST

Description: This endpoint processes audio files for Shazam recognition. It requires a valid API key for VIP users. The API key should be sent via query string.

Parameters

Request Example (curl)

curl -X POST "http://api.chiwa.id/api/shazam?apikey=beta" -F "audio=@/path/to/your/audiofile.mp3"
      

Response Example

{
  "status": 403,
  "creator": "@akanae_chiwa",
  "message": "this feature is available on vip user"
}
      

Successful Response (VIP user)

{
  "status": 200,
  "message": "Audio processed successfully."
}
      

Try Uploading an Audio File