Aller au contenu
GET /v1/meta

Spec

Essayez-le en direct

10 appels gratuits par jour — sans inscription, sans clé API. Passe par la passerelle oanor.

En-têtes personnalisés (facultatif)
api.oanor.com/audius-api

Ça marche. Récupérez une clé API et utilisez-la dans votre projet.

Obtenez une clé API

Extraits de code

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

Exemple de réponse

Une réponse réelle de ce endpoint, capturée lors du dernier contrôle de santé.

{
    "data": {
        "service": "audius-api",
        "endpoints": {
            "GET /v1/meta": "This document.",
            "GET /v1/user": "User by id or handle.",
            "GET /v1/track": "Track detail + stream URL by id.",
            "GET /v1/playlist": "Playlist/album with its tracks by id.",
            "GET /v1/user/tracks": "A user's tracks by id.",
            "GET /v1/search/users": "Search users/artists.",
            "GET /v1/search/tracks": "Search tracks (genre=).",
            "GET /v1/tracks/trending": "Trending tracks (genre=, time=).",
            "GET /v1/search/playlists": "Search playlists & albums."
        },
        "description": "Audius: the decentralised music streaming platform — search tracks/users/playlists, trending tracks, track/user/playlist detail, a user's tracks, with durable stream URLs. Real live data, no key."
    },
    "meta": {
        "timestamp": "2026-06-07T16:47:04.696Z",
        "request_id": "fd3f076c-5d04-44c5-b762-eb503d33762e"
    },
    "status": "ok",
    "message": "Meta",
    "success": true
}