How to find a release by barcode (UPC, EAN, etc)
Request
Below is an example GET request to find a release by barcode.
https://lp-api.reverb.com/api/v1/releases?barcode=823134001916
Response
The API will respond with an array of releases
that matches the barcode.
{
"releases": [
{
"uuid": "4fef989e-b2df-4881-91f1-425424789dd3",
"catalog_numbers": [
"\"DAP-019\""
],
"title": "I Learned The Hard Way",
"artist_name": "Sharon Jones & The Dap-Kings",
"release_date": "2010-04-06T00:00:00",
"formats": [
{
"name": "Vinyl",
"uuid": "811382af-d7f8-4529-9c46-a8aa8d99403e",
"descriptions": [
"LP",
"Album"
],
"text": "",
"quantity": 1
}
]
}
]
}
Updated 2 years ago