Skip to content

Get all artists

GET
/api/v1/artists

Get a list of all legendary Argentine Rock artists and explore their contributions to the music scene.

Parameters

Query Parameters

limit

The number of items to return

Typeinteger
offset

The number of items to skip before starting to collect the result set

Typeinteger

Responses

OK
JSON
[
{
"data": "1",
"meta": "2"
},
[
"3"
],
{
"limit": 10,
"offset": 0,
"total": 100,
"next": "4"
},
{
"id": 1,
"name": "5",
"description": "6",
"image": "7",
"band": "8"
},
"/artists?limit=10&offset=10",
"Charly García",
"One of the most influential rock musicians in Argentine history.",
"https://cdn.rock-legends.com/photos/charly.jpg",
"Sui Generis"
]

Samples

cURL
curl -X GET https://stoplight.io/mocks/enzonotario/argentine-rock/122547792/api/v1/artists
JavaScript
fetch("https://stoplight.io/mocks/enzonotario/argentine-rock/122547792/api/v1/artists")
  .then(response => response.json())
  .then(data => console.log(data));
PHP
file_get_contents("https://stoplight.io/mocks/enzonotario/argentine-rock/122547792/api/v1/artists");
Python
import requests
response = requests.get("https://stoplight.io/mocks/enzonotario/argentine-rock/122547792/api/v1/artists")
print(response.json())
Powered by VitePress OpenAPI