/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/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_..."}
)
Exemple de réponse
Une réponse réelle de ce endpoint, capturée lors du dernier contrôle de santé.
{
"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
}