Skip to content
GET /v1/user/tracks

An artist's tracks

Try it live

10 free calls per day — no sign-up, no API key. Goes through the oanor gateway.

Custom headers (optional)
api.oanor.com/audius-api

It works. Grab an API key and use it in your project.

Get an API key

Code snippets

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

Example response

A real response from this endpoint, captured by the latest health check.

{
    "data": {
        "count": 25,
        "tracks": [
            {
                "id": "bKpMX",
                "bpm": 140,
                "url": "https://audius.co/odesza/if-theres-time",
                "isrc": null,
                "mood": null,
                "tags": null,
                "user": {
                    "id": "2oNg1",
                    "name": "ODESZA",
                    "handle": "odesza",
                    "is_verified": true
                },
                "genre": "Electronic",
                "title": "If There's Time",
                "artwork": "https://audius-content-13.figment.io/content/QmfH6BGGMG7Rc25noiK76V7AXnytFWPySZiWx5G3fAY6P4/1000x1000.jpg",
                "license": null,
                "duration": 196,
                "play_count": 17345,
                "stream_url": "https://api.audius.co/v1/tracks/bKpMX/stream?app_name=oanor",
                "musical_key": "B flat minor",
                "preview_url": null,
                "downloadable": false,
                "release_date": "2021-10-25T19:59:55Z",
                "repost_count": 112,
                "comment_count": 2,
                "is_streamable": true,
                "favorite_count": 261
            },
            {
                "id": "YR0Zv",
                "bpm": 96,
                "url": "https://audius.co/odesza/how-did-i-get-here",
                "isrc": null,
                "mood": null,
                "tags": null,
                "user": {
                    "id": "2oNg1",
                    "name": "ODESZA",
                    "handle": "odesza",
                    "is_verified": true
                },
                "genre": "Electronic",
                "title": "How Did I Get Here",
                "artwork": "https://val004.open-audio-validator.com/content/QmTb2M86fJYJpKSE6n77nU1Zfom9rNBfq5sNwBf6WPFs1h/1000x1000.jpg",
                "license": null,
                "duration": 131,
                "play_count": 15502,
                "stream_url": "https://api.audius.co/v1/tracks/YR0Zv/stream?app_name=oanor",
                "musical_key": "C minor",
                "preview_url": null,
                "downloadable": false,
                "release_date": "2021-10-18T21:00:55Z",
                "repost_count": 74,
                "comment_count": 2,
                "is_streamable": true,
                "favorite_count": 186
            },
            {
                "id": "K7vE9",
                "bpm": 116.2,
                "url": "https://audius.co/odesza/say-my-name-feat-zyra",
                "isrc": null,
                "mood": null,
                "tags": null,
                "user": {
                    "id": "2oNg1",
                    "name": "ODESZA",
                    "handle": "odesza",
                    "is_verified": true
                },
                "genre": "Electronic",
                "title": "Say My Name (feat. Zyra)",
                "artwork": "https://audi
…