/v1/validate
Validate & lint a spec
Probeer het live
10 gratis calls per dag — geen registratie, geen API-key. Loopt via de oanor-gateway.
Het werkt. Haal een API-key op en gebruik hem in je project.
Verkrijg een API-sleutelCodefragmenten
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_..."}
)
Voorbeeldrespons
Een echte respons van dit endpoint, vastgelegd bij de laatste 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
}