/v1/validate
Validate & lint a spec
Pruébalo en vivo
10 llamadas gratis al día — sin registro, sin clave API. Pasa por el gateway de oanor.
Funciona. Consigue una clave API y úsala en tu proyecto.
Obtener una clave APIFragmentos de código
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_..."}
)
Respuesta de ejemplo
Una respuesta real de este endpoint, capturada en la última comprobación de estado.
{
"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
}