Zum Inhalt springen
GET /v1/model

A single model in full

Live testen

10 freie Calls pro Tag — keine Anmeldung, kein API-Key. Geht durchs oanor-Gateway.

Eigene Header (optional)
api.oanor.com/civitai-api

Funktioniert. Hol dir einen API-Key und nutze sie in deinem Projekt.

API-Key holen

Code-Snippets

curl "https://api.oanor.com/civitai-api/v1/model" \
  -H "x-oanor-key: oanor_test_..."
await fetch("https://api.oanor.com/civitai-api/v1/model", {
  headers: { "x-oanor-key": "oanor_test_..." }
});
$ch = curl_init("https://api.oanor.com/civitai-api/v1/model");
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/model",
    headers={"x-oanor-key": "oanor_test_..."}
)

Beispiel-Response

Echte Antwort dieses Endpoints, erfasst beim letzten Health-Check.

{
    "data": {
        "id": 4201,
        "name": "Realistic Vision V6.0 B1",
        "nsfw": false,
        "tags": [
            "photorealistic",
            "anatomical",
            "realistic",
            "semi-realistic",
            "base model",
            "cgi"
        ],
        "type": "Checkpoint",
        "rating": null,
        "source": "Civitai",
        "creator": "SG_161222",
        "comments": 0,
        "downloads": 2239671,
        "favorites": null,
        "thumbs_up": 52550,
        "base_models": [
            "SD 1.5 Hyper",
            "SD 1.5"
        ],
        "description": "Check my exclusive models on Mage: ParagonXL / NovaXL / NovaXL Lightning / NovaXL V2 / NovaXL Pony / NovaXL Pony Lightning / RealDreamXL / RealDreamXL Lightning Recommendations for using the Hyper model: Sampler = DPM SDE++ Karras or another / 4-6+ steps CFG Scale = 1.5-2.0 ( the lower the value, the more mutations, but the less contrast ) I also recommend using ADetailer for generation (some examples were generated with ADetailer, this will be noted in the image comments). This model is availab",
        "rating_count": null,
        "version_count": 19,
        "latest_version": {
            "name": "V5.1 Hyper (VAE)",
            "base_model": "SD 1.5 Hyper",
            "published_at": "2024-05-12T06:24:13.109Z"
        },
        "allow_commercial_use": "{Image,RentCivit,Rent}"
    },
    "meta": {
        "timestamp": "2026-06-12T01:42:54.169Z",
        "request_id": "2469c4a6-a574-4188-9902-beb0d4b50045"
    },
    "status": "ok",
    "message": "Model retrieved successfully",
    "success": true
}