/v1/channel
A single channel by id
Pruébalo en vivo
10 llamadas gratis al día — sin registro, sin clave API. Pasa por el gateway de oanor.
Funciona. Consigue una clave API y úsala en tu proyecto.
Obtener una clave APIFragmentos de código
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_..."}
)
Respuesta de ejemplo
Una respuesta real de este endpoint, capturada en la última comprobación de estado.
{
"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
}