Aller au contenu
GET /v1/channel

A single channel by id

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/farcaster-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/farcaster-api/v1/channel" \
  -H "x-oanor-key: oanor_test_..."
await fetch("https://api.oanor.com/farcaster-api/v1/channel", {
  headers: { "x-oanor-key": "oanor_test_..." }
});
$ch = curl_init("https://api.oanor.com/farcaster-api/v1/channel");
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/farcaster-api/v1/channel",
    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": {
        "channel": {
            "id": "farcaster",
            "url": "https://warpcast.com/~/channel/farcaster",
            "name": "Farcaster",
            "lead_fid": 1,
            "followers": 445481,
            "image_url": "https://imagedelivery.net/BXluQx4ige9GuW0Ia56BHw/51ffff68-b05c-4465-37a3-38e0c9a21300/original",
            "description": "Discussions about Farcaster on Farcaster (meta!)"
        }
    },
    "meta": {
        "timestamp": "2026-06-09T03:03:09.272Z",
        "request_id": "dca6be47-1b6f-45ca-9b7c-edaa8f4ac9f9"
    },
    "status": "ok",
    "message": "Channel retrieved successfully",
    "success": true
}