Logo

Docs

Endpoints

Album

Retrieve a single album by its OMID

GET
/album/{id}

Path Parameters

id*string

Album OMID

Match^[0-9a-z]{16}$

Response Body

application/json

curl -X GET "https://api.vleer.app/metadata/v1/album/string"
{
  "id": "string",
  "name": "string",
  "artist": [
    {
      "id": "string",
      "name": "string",
      "image": "http://example.com",
      "genres": [
        "string"
      ]
    }
  ],
  "genres": [
    "string"
  ],
  "image": "http://example.com",
  "date": "string",
  "track_count": 0,
  "upc": "string",
  "label": "string"
}
Empty