Ir al contenido
GET /v1/meta

Service metadata

Pruébalo en vivo

10 llamadas gratis al día — sin registro, sin clave API. Pasa por el gateway de oanor.

Encabezados personalizados (opcional)
api.oanor.com/piefed-api

Funciona. Consigue una clave API y úsala en tu proyecto.

Obtener una clave API

Fragmentos de código

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

Respuesta de ejemplo

Una respuesta real de este endpoint, capturada en la última comprobación de estado.

{
    "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
}