/v1/scales
Scale reference + compare
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/scalemodel-api/v1/scales" \ -H "x-oanor-key: oanor_test_..."
await fetch("https://api.oanor.com/scalemodel-api/v1/scales", {
headers: { "x-oanor-key": "oanor_test_..." }
});
$ch = curl_init("https://api.oanor.com/scalemodel-api/v1/scales");
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/scalemodel-api/v1/scales",
headers={"x-oanor-key": "oanor_test_..."}
)
Respuesta de ejemplo
Una respuesta real de este endpoint, capturada en la última comprobación de estado.
{
"data": {
"note": "Common modelling scales (real ÷ model). Smaller ratios make bigger models. Pass scale_a and scale_b to compare how much bigger one is than the other.",
"compare": {
"detail": "A 1:35 model is 2.057× the size of the same subject at 1:72.",
"scale_a": "1/35",
"scale_b": "1/72",
"a_vs_b_size": 2.0571
},
"named_scales": {
"G": "1:22.5",
"N": "1:160",
"O": "1:48",
"S": "1:64",
"Z": "1:220",
"HO": "1:87.1",
"OO": "1:76.1",
"TT": "1:120",
"1/16": "1:16",
"1/18": "1:18",
"1/24": "1:24",
"1/32": "1:32",
"1/35": "1:35",
"1/43": "1:43",
"1/48": "1:48",
"1/64": "1:64",
"1/72": "1:72",
"1/144": "1:144"
}
},
"meta": {
"timestamp": "2026-06-06T07:13:59.216Z",
"request_id": "f22bb882-49ef-438a-b3b2-61013b4afac8"
},
"status": "ok",
"message": "Scale reference",
"success": true
}