Vai al contenuto
GET /v1/meta

Service metadata

Provalo dal vivo

10 chiamate gratuite al giorno — senza registrazione, senza chiave API. Passa dal gateway oanor.

Intestazioni personalizzate (facoltative)
api.oanor.com/pixelfed-api

Funziona. Prendi una chiave API e usala nel tuo progetto.

Ottieni una chiave API

Frammenti di codice

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

Risposta di esempio

Una risposta reale di questo endpoint, acquisita dall'ultimo health check.

{
    "data": {
        "source": "Pixelfed (Mastodon-compatible account API + public Atom feed, live)",
        "service": "pixelfed-api",
        "endpoints": {
            "GET /v1/meta": "This document.",
            "GET /v1/posts": "A creator's recent photo posts (user=, limit up to 40): image, caption, hashtags.",
            "GET /v1/account": "A creator's profile (user=dansup or user@instance): followers, following, posts, bio.",
            "GET /v1/hashtags": "A creator's most-used hashtags and recent activity (user=)."
        },
        "description": "Live data for Pixelfed, the federated photo-sharing network (open Instagram alternative on ActivityPub): resolve a @username (or @user@instance) to its profile (display name, bio, followers, following, post count, avatar, join date); list a creator's recent photo posts with image URL, caption, hashtags and link; and summarise a creator's most-used hashtags and posting activity. Live, no key, nothing stored. Distinct from fediverse-statistics and microblog APIs — this is Pixelfed creator profiles and their photos.",
        "upstream_status": "ok"
    },
    "meta": {
        "timestamp": "2026-06-09T11:39:29.026Z",
        "request_id": "1bb5debc-3f98-4fde-b5a6-07bf17aa0dc2"
    },
    "status": "ok",
    "message": "Meta",
    "success": true
}