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/lensprotocol-api

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

Verkrijg een API-sleutel

Codefragmenten

curl "https://api.oanor.com/lensprotocol-api/v1/meta" \
  -H "x-oanor-key: oanor_test_..."
await fetch("https://api.oanor.com/lensprotocol-api/v1/meta", {
  headers: { "x-oanor-key": "oanor_test_..." }
});
$ch = curl_init("https://api.oanor.com/lensprotocol-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/lensprotocol-api/v1/meta",
    headers={"x-oanor-key": "oanor_test_..."}
)

Voorbeeldrespons

Een echte respons van dit endpoint, vastgelegd bij de laatste health check.

{
    "data": {
        "note": "Identify an account by username=stani (a Lens local name) or address=0x...; stats and posts accept either. Engagement and graph counts are on-chain-backed live figures.",
        "source": "Lens v3 GraphQL (api.lens.xyz/graphql, live)",
        "service": "lensprotocol-api",
        "endpoints": {
            "GET /v1/feed": "Latest posts across the whole Lens network (limit=10|50).",
            "GET /v1/meta": "This document.",
            "GET /v1/posts": "An account's recent publications with text, timestamp and engagement (username=stani, limit=10|50).",
            "GET /v1/stats": "Social graph — follower/following counts and post/comment/repost/collect totals (username=stani).",
            "GET /v1/account": "Profile by username or address — name, bio, picture, address (username=stani)."
        },
        "description": "Live data from Lens Protocol, the decentralized social graph where accounts, posts and follows are owned on-chain by users rather than a platform. The account endpoint resolves a Lens username or address to its profile (name, bio, picture, address); the stats endpoint returns the social graph (follower/following counts and post/comment/repost/collect totals); the posts endpoint returns an account's recent publications with text, timestamp and engagement; the feed endpoint returns the latest posts across the whole network. Live, no key, nothing stored. The decentralized-social cut — distinct from the centralized-platform social APIs and the crypto price/market APIs.",
        "upstream_status": "ok"
    },
    "meta": {
        "timestamp": "2026-06-11T16:46:52.863Z",
        "request_id": "bec90733-2627-46bd-ad27-790249cf4b50"
    },
    "status": "ok",
    "message": "Meta",
    "success": true
}