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

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

Obtener una clave API

Fragmentos de código

curl "https://api.oanor.com/civitai-api/v1/meta" \
  -H "x-oanor-key: oanor_test_..."
await fetch("https://api.oanor.com/civitai-api/v1/meta", {
  headers: { "x-oanor-key": "oanor_test_..." }
});
$ch = curl_init("https://api.oanor.com/civitai-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/civitai-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": {
        "note": "sort = downloads (default), rating, newest or likes. type filters by Checkpoint, LORA, TextualInversion, etc. nsfw defaults to false; pass nsfw=true to include adult models. Engagement counts are community totals.",
        "source": "Civitai (civitai.com/api/v1, live)",
        "service": "civitai-api",
        "endpoints": {
            "GET /v1/meta": "This document.",
            "GET /v1/model": "A single model in full — description, stats, tags, base models, versions (id=4201).",
            "GET /v1/models": "List/search models with engagement (query, type, sort=downloads|rating|newest|likes, nsfw=false, limit=20).",
            "GET /v1/creators": "Model creators with their model counts (query optional)."
        },
        "description": "Live data from Civitai, the largest community for sharing AI image-generation models (Stable Diffusion checkpoints, LoRAs, embeddings). The AI-art creator-platform cut: which models the community downloads and rates, who makes them and how each is engaged with. The models endpoint lists and searches models with type, creator, base model, tags and engagement (downloads, thumbs-up, comments); the model endpoint returns a single model in full; the creators endpoint lists model creators with their model counts. Safe-for-work only by default. Live, no key, nothing stored. The AI-model-community cut — distinct from the general ML-model-hub, image-generation and price/market APIs.",
        "upstream_status": "ok"
    },
    "meta": {
        "timestamp": "2026-06-12T01:42:55.683Z",
        "request_id": "073e8945-322c-4823-9d68-06c25cc88a61"
    },
    "status": "ok",
    "message": "Meta",
    "success": true
}