/v1/identify
Identify the scale
Try it live
10 free calls per day — no sign-up, no API key. Goes through the oanor gateway.
It works. Grab an API key and use it in your project.
Get an API keyCode snippets
curl "https://api.oanor.com/scalemodel-api/v1/identify" \ -H "x-oanor-key: oanor_test_..."
await fetch("https://api.oanor.com/scalemodel-api/v1/identify", {
headers: { "x-oanor-key": "oanor_test_..." }
});
$ch = curl_init("https://api.oanor.com/scalemodel-api/v1/identify");
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/identify",
headers={"x-oanor-key": "oanor_test_..."}
)
Example response
A real response from this endpoint, captured by the latest health check.
{
"data": {
"note": "Scale = real size ÷ model size (in the same unit). The nearest standard scale helps you buy matching figures and accessories; check the off-by percentage before mixing ranges.",
"scale": "1:87.05",
"inputs": {
"real": 1828,
"model": 21,
"real_unit": "mm",
"model_unit": "mm"
},
"scale_ratio": 87.048,
"nearest_named_ratio": 87.1,
"nearest_named_scale": "HO",
"nearest_off_by_percent": 0.06
},
"meta": {
"timestamp": "2026-06-06T07:13:59.112Z",
"request_id": "bcc90878-60ff-495d-af97-c915db39eb7e"
},
"status": "ok",
"message": "Identify scale",
"success": true
}