/v1/artist/songs
Artist songs
Try it live
10 free calls per day — no sign-up, no API key. Goes through the oanor gateway.
It works. Grab an API key and use it in your project.
Get an API keyCode snippets
curl "https://api.oanor.com/genius-api/v1/artist/songs" \ -H "x-oanor-key: oanor_test_..."
await fetch("https://api.oanor.com/genius-api/v1/artist/songs", {
headers: { "x-oanor-key": "oanor_test_..." }
});
$ch = curl_init("https://api.oanor.com/genius-api/v1/artist/songs");
curl_setopt($ch, CURLOPT_HTTPHEADER, ["x-oanor-key: oanor_test_..."]);
curl_setopt($ch, CURLOPT_RETURNTRANSFER, true);
$out = curl_exec($ch);
import requests
requests.get(
"https://api.oanor.com/genius-api/v1/artist/songs",
headers={"x-oanor-key": "oanor_test_..."}
)
Example response
A real response from this endpoint, captured by the latest health check.
{
"data": {
"count": 20,
"songs": [
{
"id": 1063,
"hot": false,
"url": "https://genius.com/Queen-bohemian-rhapsody-lyrics",
"path": "/Queen-bohemian-rhapsody-lyrics",
"image": "https://images.genius.com/718de9d1fbcaae9f3c9b1bf483bfa8f1.1000x1000x1.png",
"title": "Bohemian Rhapsody",
"pageviews": 11172004,
"thumbnail": "https://images.genius.com/718de9d1fbcaae9f3c9b1bf483bfa8f1.300x300x1.png",
"full_title": "Bohemian Rhapsody by Queen",
"release_date": "October 31, 1975",
"primary_artist": {
"id": 563,
"url": "https://genius.com/artists/Queen",
"name": "Queen",
"image": "https://images.genius.com/3bc047e8b3c654ed28aedc69f93f8663.1000x1000x1.jpg",
"verified": false
},
"featured_artists": []
},
{
"id": 205311,
"hot": false,
"url": "https://genius.com/Queen-dont-stop-me-now-lyrics",
"path": "/Queen-dont-stop-me-now-lyrics",
"image": "https://images.genius.com/b711fe7bf0e4f43a9167dee9998071ea.1000x1000x1.png",
"title": "Don’t Stop Me Now",
"pageviews": 2509532,
"thumbnail": "https://images.genius.com/b711fe7bf0e4f43a9167dee9998071ea.300x300x1.png",
"full_title": "Don't Stop Me Now by Queen",
"release_date": "November 10, 1978",
"primary_artist": {
"id": 563,
"url": "https://genius.com/artists/Queen",
"name": "Queen",
"image": "https://images.genius.com/3bc047e8b3c654ed28aedc69f93f8663.1000x1000x1.jpg",
"verified": false
},
"featured_artists": []
},
{
"id": 152350,
"hot": false,
"url": "https://genius.com/Queen-and-david-bowie-under-pressure-lyrics",
"path": "/Queen-and-david-bowie-under-pressure-lyrics",
"image": "https://images.genius.com/b0f5b5c21d100d91eb854584c9542222.1000x1000x1.png",
"title": "Under Pressure",
"pageviews": 2030524,
"thumbnail": "https://images.genius.com/b0f5b5c21d100d91eb854584c9542222.300x300x1.png",
"full_title": "Under Pressure by Queen & David Bowie",
"release_date": "October 26, 1981",
"primary_artist": {
"id": 563,
"url": "https://genius.com/artists/Queen",
"name": "Queen",
"image": "https://images.genius.com/3bc047e8b3c654ed28aedc69f93f8663.1000x1000x1.jpg",
"verified
…