/v1/meta
Service metadata
Δοκιμάστε το ζωντανά
10 δωρεάν κλήσεις την ημέρα — χωρίς εγγραφή, χωρίς κλειδί API. Μέσω του gateway του oanor.
Δουλεύει. Πάρε ένα κλειδί API και χρησιμοποίησέ το στο έργο σου.
Λάβετε ένα κλειδί APIΑποσπάσματα κώδικα
curl "https://api.oanor.com/piefed-api/v1/meta" \ -H "x-oanor-key: oanor_test_..."
await fetch("https://api.oanor.com/piefed-api/v1/meta", {
headers: { "x-oanor-key": "oanor_test_..." }
});
$ch = curl_init("https://api.oanor.com/piefed-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/piefed-api/v1/meta",
headers={"x-oanor-key": "oanor_test_..."}
)
Παράδειγμα απόκρισης
Πραγματική απόκριση αυτού του endpoint, από τον τελευταίο έλεγχο υγείας.
{
"data": {
"source": "PieFed public API (live, SFW feeds)",
"service": "piefed-api",
"endpoints": {
"GET /v1/meta": "This document.",
"GET /v1/post": "A single post in full (id=115819).",
"GET /v1/user": "A member's profile (username=rimu).",
"GET /v1/posts": "The post feed with scores and comments (sort=Hot|New|TopAll, limit).",
"GET /v1/search": "Search communities, posts or users (q=linux, type=communities|posts|users).",
"GET /v1/comments": "The comment thread on a post, with scores and authors (post_id=115819).",
"GET /v1/community": "One community in full by name or id, with moderators (name=technology).",
"GET /v1/communities": "Communities with subscriber/post/comment counts (sort=Active|Hot|TopAll, limit)."
},
"description": "Live community, post and user data from PieFed, an open-source threadiverse platform (a federated Reddit-style link aggregator), via the flagship piefed.social instance's public API. The communities endpoint lists communities with their subscriber, post and comment counts; the posts endpoint returns the feed with each post's title, link, score, vote and comment counts, author and community; the post endpoint returns a single post in full; the user endpoint returns a member's profile with post and comment counts and join date. Live, no key, nothing stored; to keep results work-safe, NSFW posts and communities are filtered out. Distinct from Lemmy, Mbin and other aggregator APIs — this is the PieFed platform, its communities, posts and members.",
"upstream_status": "ok"
},
"meta": {
"timestamp": "2026-06-13T14:04:32.155Z",
"request_id": "22e2489a-0c90-4c4c-a08b-7f9fbdc8b130"
},
"status": "ok",
"message": "Meta",
"success": true
}