Vai al contenuto
GET /v1/search/users

Search artists

Provalo dal vivo

10 chiamate gratuite al giorno — senza registrazione, senza chiave API. Passa dal gateway oanor.

Intestazioni personalizzate (facoltative)
api.oanor.com/audius-api

Funziona. Prendi una chiave API e usala nel tuo progetto.

Ottieni una chiave API

Frammenti di codice

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

Risposta di esempio

Una risposta reale di questo endpoint, acquisita dall'ultimo health check.

{
    "data": {
        "count": 10,
        "query": "odesza",
        "users": [
            {
                "id": "2oNg1",
                "bio": "H + C",
                "url": "https://audius.co/odesza",
                "name": "ODESZA",
                "handle": "odesza",
                "location": "Seattle, WA",
                "album_count": 5,
                "cover_photo": null,
                "is_verified": true,
                "track_count": 81,
                "repost_count": 0,
                "follower_count": 220127,
                "playlist_count": 1,
                "following_count": 1,
                "profile_picture": "https://audius-creator-2.theblueprint.xyz/content/QmS1vCfFevBVJRcRmyPTqqHaGw2TG1Pf3d362rDXzyUM6R/1000x1000.jpg"
            },
            {
                "id": "PrW9N",
                "bio": "Stay away from those people who try to disparage your ambitions. Small minds will always do that, but great minds will give you a feeling that you can become great too",
                "url": "https://audius.co/Adesaanya967",
                "name": "Adesaanya Gamoo",
                "handle": "Adesaanya967",
                "location": null,
                "album_count": 0,
                "cover_photo": null,
                "is_verified": false,
                "track_count": 0,
                "repost_count": 0,
                "follower_count": 44,
                "playlist_count": 0,
                "following_count": 120,
                "profile_picture": null
            },
            {
                "id": "DBXWp",
                "bio": "thanks for listening",
                "url": "https://audius.co/atreidescartier",
                "name": "atreides",
                "handle": "atreidescartier",
                "location": null,
                "album_count": 0,
                "cover_photo": null,
                "is_verified": false,
                "track_count": 3,
                "repost_count": 2,
                "follower_count": 48,
                "playlist_count": 0,
                "following_count": 13,
                "profile_picture": "https://audius-content-10.figment.io/content/QmQB87ZEWBmzUSvdUvYyxoSg8rfuzXdpzMxSLJrzsdFa7K/1000x1000.jpg"
            },
            {
                "id": "j4AgV",
                "bio": "Los Grandes Bastardos somos un grupo de Rock Mestizo formado por: Sandi, Thalo, Gloria y Currás. En 2022 publicamos nuestro EP “Once Upon a Time” como punto de partida del sonido bastardo, 5 cortes en los que cada una de las canciones es un nuevo episodio",
                "url": "https://audius.co/grandesbastardos",
                "name": "Los Grandes Bastardos",
                "handle": "grandesbastardos",
                "location": "Spain",
                "album_count": 1,
                "cover_photo": null,
                "is_verified": false,
                "track_count": 5,
                "repost_count": 1,
                "follower_count": 42,
  
…