/v1/meta
Service metadata
Live testen
10 freie Calls pro Tag — keine Anmeldung, kein API-Key. Geht durchs oanor-Gateway.
Funktioniert. Hol dir einen API-Key und nutze sie in deinem Projekt.
API-Key holenCode-Snippets
curl "https://api.oanor.com/farcaster-api/v1/meta" \ -H "x-oanor-key: oanor_test_..."
await fetch("https://api.oanor.com/farcaster-api/v1/meta", {
headers: { "x-oanor-key": "oanor_test_..." }
});
$ch = curl_init("https://api.oanor.com/farcaster-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/farcaster-api/v1/meta",
headers={"x-oanor-key": "oanor_test_..."}
)
Beispiel-Response
Echte Antwort dieses Endpoints, erfasst beim letzten Health-Check.
{
"data": {
"source": "Warpcast public API (live)",
"service": "farcaster-api",
"endpoints": {
"GET /v1/meta": "This document.",
"GET /v1/user": "Profile by username (username=dwr.eth) or fid=.",
"GET /v1/casts": "A user's recent casts (username= or fid=, limit).",
"GET /v1/channel": "Single channel by id (channelId=farcaster).",
"GET /v1/channels": "Channel directory ranked by followers (q= filter, limit)."
},
"description": "Live data from Farcaster, the decentralised social network, via the public Warpcast API: user profiles (by username or FID) with followers/following/bio, a user's recent casts with likes/recasts/replies, the channel directory ranked by followers, and single-channel lookup. Live, no key. Distinct from Mastodon, Bluesky and other social platforms.",
"channels_indexed": 16432
},
"meta": {
"timestamp": "2026-06-09T03:03:11.643Z",
"request_id": "3b0c29af-d13f-4187-a35e-4f38c59d5555"
},
"status": "ok",
"message": "Meta",
"success": true
}