Naar de inhoud
GET /v1/meta

Service metadata

Probeer het live

10 gratis calls per dag — geen registratie, geen API-key. Loopt via de oanor-gateway.

Aangepaste headers (optioneel)
api.oanor.com/farcaster-api

Het werkt. Haal een API-key op en gebruik hem in je project.

Verkrijg een API-sleutel

Codefragmenten

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

Voorbeeldrespons

Een echte respons van dit endpoint, vastgelegd bij de laatste 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
}