/v1/meta
Service metadata
Essayez-le en direct
10 appels gratuits par jour — sans inscription, sans clé API. Passe par la passerelle oanor.
Ça marche. Récupérez une clé API et utilisez-la dans votre projet.
Obtenez une clé APIExtraits de code
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_..."}
)
Exemple de réponse
Une réponse réelle de ce endpoint, capturée lors du dernier contrôle de santé.
{
"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
}