Vai al contenuto
GET /v1/validate

Validate & lint a spec

Provalo dal vivo

10 chiamate gratuite al giorno — senza registrazione, senza chiave API. Passa dal gateway oanor.

Intestazioni personalizzate (facoltative)
api.oanor.com/openapi-api

Funziona. Prendi una chiave API e usala nel tuo progetto.

Ottieni una chiave API

Frammenti di codice

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

Risposta di esempio

Una risposta reale di questo endpoint, acquisita dall'ultimo 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
}