Zum Inhalt springen
GET /v1/validate

Validate & lint a spec

Live testen

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

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

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

API-Key holen

Code-Snippets

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

Beispiel-Response

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

{
    "data": {
        "title": "Example API",
        "valid": true,
        "counts": {
            "tags": 0,
            "paths": 1,
            "schemas": 0,
            "servers": 0,
            "operations": 1
        },
        "errors": [],
        "methods": {
            "get": 1
        },
        "version": "OpenAPI 3.0.0",
        "warnings": [],
        "api_version": "1.0.0",
        "error_count": 0,
        "warning_count": 0
    },
    "meta": {
        "timestamp": "2026-06-01T23:40:50.061Z",
        "request_id": "c297dfd1-d18e-4a2f-9f26-aed1ed9b83ce"
    },
    "status": "ok",
    "message": "Spec validated",
    "success": true
}