Skip to main content
GET
/
api
/
songs
cURL
curl --request GET \
  --url https://api.recoupable.com/api/songs
{
  "songs": [
    {
      "isrc": "<string>",
      "name": "<string>",
      "album": "<string>",
      "notes": "<string>",
      "updated_at": "2023-11-07T05:31:56Z",
      "artists": [
        {
          "id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
          "name": "<string>",
          "timestamp": 123
        }
      ]
    }
  ],
  "error": "<string>"
}
The Songs API also supports POST requests for bulk create/fetch operations. See the Create Songs endpoint.

Query Parameters

isrc
string

International Standard Recording Code to filter by specific song

artist_account_id
string<uuid>

Artist account ID to filter songs by artist

Response

Songs retrieved successfully

Response containing songs data

status
enum<string>

Status of the request

Available options:
success,
error
songs
object[]

Array of song objects with artist information

error
string

Error message (only present if status is 'error')