/v1/search/multi
Search songs, artists, albums
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/search/multi" \ -H "x-oanor-key: oanor_test_..."
await fetch("https://api.oanor.com/genius-api/v1/search/multi", {
headers: { "x-oanor-key": "oanor_test_..." }
});
$ch = curl_init("https://api.oanor.com/genius-api/v1/search/multi");
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/search/multi",
headers={"x-oanor-key": "oanor_test_..."}
)
Example response
A real response from this endpoint, captured by the latest health check.
{
"data": {
"query": "queen",
"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": 11172050,
"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": 299177,
"hot": false,
"url": "https://genius.com/Beyonce-drunk-in-love-lyrics",
"path": "/Beyonce-drunk-in-love-lyrics",
"image": "https://images.genius.com/822e0619fe28f3e35aba4eba567111e8.1000x1000x1.png",
"title": "Drunk in Love",
"pageviews": 8941306,
"thumbnail": "https://images.genius.com/822e0619fe28f3e35aba4eba567111e8.300x300x1.png",
"full_title": "Drunk in Love by Beyoncé (Ft. JAŸ-Z)",
"release_date": "December 17, 2013",
"primary_artist": {
"id": 498,
"url": "https://genius.com/artists/Beyonce",
"name": "Beyoncé",
"image": "https://images.genius.com/755f65b7625016ec909b9d3d4ff9ca90.1000x1000x1.jpg",
"verified": false
},
"featured_artists": [
{
"id": 2,
"url": "https://genius.com/artists/Jay-z",
"name": "JAŸ-Z",
"image": "https://images.genius.com/dab4680bbb0569024ef3df3d1e87c277.570x570x1.jpg",
"verified": true
}
]
},
{
"id": 496445,
"hot": false,
"url": "https://genius.com/Fetty-wap-trap-queen-lyrics",
"path": "/Fetty-wap-trap-queen-lyrics",
"image": "https://images.genius.com/9bc4ba5cffb770435bf740eedfa79e23.1000x1000x1.png",
"title": "Trap Queen",
"pageviews": 7903670,
"thumbnail": "https://images.genius.com/9bc4ba5cffb770435bf740eedfa79e23.300x300x1.png",
"full_title": "Trap Queen by Fetty Wap",
"release_date": "March 8
…