Zum Inhalt springen
GET /v1/search/tracks

Search tracks

Live testen

10 freie Calls pro Tag — keine Anmeldung, kein API-Key. Geht durchs oanor-Gateway.

Eigene Header (optional)
api.oanor.com/audius-api

Funktioniert. Hol dir einen API-Key und nutze sie in deinem Projekt.

API-Key holen

Code-Snippets

curl "https://api.oanor.com/audius-api/v1/search/tracks" \
  -H "x-oanor-key: oanor_test_..."
await fetch("https://api.oanor.com/audius-api/v1/search/tracks", {
  headers: { "x-oanor-key": "oanor_test_..." }
});
$ch = curl_init("https://api.oanor.com/audius-api/v1/search/tracks");
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/audius-api/v1/search/tracks",
    headers={"x-oanor-key": "oanor_test_..."}
)

Beispiel-Response

Echte Antwort dieses Endpoints, erfasst beim letzten Health-Check.

{
    "data": {
        "count": 10,
        "query": "techno",
        "tracks": [
            {
                "id": "apNQJm1",
                "bpm": 159.6,
                "url": "https://audius.co/sammyandlesen/sammy-lesen-gia-koka-techno-king-2-times",
                "isrc": "",
                "mood": "Empowering",
                "tags": "hypertechno",
                "user": {
                    "id": "myAkQ",
                    "name": "SAMMY & LESEN",
                    "handle": "sammyandlesen",
                    "is_verified": true
                },
                "genre": "Electronic",
                "title": "SAMMY & LESEN, Gia Koka, TECHNO KING - 2 Times",
                "artwork": "https://audius-content-10.figment.io/content/01JRHM7WCVS32ESJRN8FDW0ADM/1000x1000.jpg",
                "license": null,
                "duration": 133,
                "play_count": 366,
                "stream_url": "https://api.audius.co/v1/tracks/apNQJm1/stream?app_name=oanor",
                "musical_key": "F major",
                "preview_url": null,
                "downloadable": false,
                "release_date": "2025-04-11T05:14:03Z",
                "repost_count": 60,
                "comment_count": 9,
                "is_streamable": true,
                "favorite_count": 69
            },
            {
                "id": "5QW0lXx",
                "bpm": 133,
                "url": "https://audius.co/djgalactic/techno-mix-0982025",
                "isrc": "",
                "mood": "Energizing",
                "tags": "techno,minimal,electronic,electro,edm,dj,mix,party,rave,tech",
                "user": {
                    "id": "oG33d",
                    "name": "DJ Galactic",
                    "handle": "djgalactic",
                    "is_verified": false
                },
                "genre": "Electronic",
                "title": "Techno Mix [0982025]",
                "artwork": "https://audius-01.staked.cloud/content/01K27PE663SMSX4S34G8MJBMVJ/1000x1000.jpg",
                "license": null,
                "duration": 3628,
                "play_count": 53,
                "stream_url": "https://api.audius.co/v1/tracks/5QW0lXx/stream?app_name=oanor",
                "musical_key": "G minor",
                "preview_url": null,
                "downloadable": false,
                "release_date": "2025-08-09T15:19:54Z",
                "repost_count": 28,
                "comment_count": 5,
                "is_streamable": true,
                "favorite_count": 30
            },
            {
                "id": "63Gz0yQ",
                "bpm": 130.9,
                "url": "https://audius.co/cooprecsmusic/okayval-techno-sh",
                "isrc": "",
                "mood": null,
                "tags": "",
                "user": {
                    "id": "PWY7x2X",
                    "name": "Coop Records",
                    "handle": "cooprecsmusic",
                    "is_v
…