/v1/meta
Service metadata
Try it live
10 free calls per day — no sign-up, no API key. Goes through the oanor gateway.
It works. Grab an API key and use it in your project.
Get an API keyCode snippets
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_..."}
)
Example response
A real response from this endpoint, captured by the latest health check.
{
"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
}