Zum Inhalt springen
GET /v1/channel

A single channel by id

Live testen

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

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

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

API-Key holen

Code-Snippets

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_..."}
)

Beispiel-Response

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

{
    "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
}