{"openapi":"3.1.0","info":{"title":"Unit Converter API","version":"1.0.0","description":"Fast, deterministic unit conversion across 10 categories — length, mass, temperature, area, volume, speed, time, digital storage, pressure and energy. Convert any value between compatible units and list the full unit catalog per category. Fully local compute (no third-party upstream), so responses are instant and always available. Ideal for calculators, e-commerce, logistics, engineering tools, dashboards and chatbots.","contact":{"name":"PremiumApi","url":"https://www.oanor.com/by/premiumapi"}},"servers":[{"url":"https://api.oanor.com/unit-api","description":"oanor gateway"}],"tags":[{"name":"Unit"}],"components":{"securitySchemes":{"oanorKey":{"type":"apiKey","in":"header","name":"x-oanor-key","description":"Get your key at https://www.oanor.com/developer/keys"}}},"security":[{"oanorKey":[]}],"paths":{"/v1/convert":{"get":{"operationId":"get_v1_convert","tags":["Unit"],"summary":"Convert a value between units","description":"","parameters":[{"name":"value","in":"query","required":true,"description":"Numeric value to convert","schema":{"type":"string"},"example":"100"},{"name":"from","in":"query","required":true,"description":"Source unit","schema":{"type":"string"},"example":"c"},{"name":"to","in":"query","required":true,"description":"Target unit (same category)","schema":{"type":"string"},"example":"f"}],"security":[{"oanorKey":[]}],"responses":{"200":{"description":"OK","content":{"application/json":{"example":{"data":{"to":"f","from":"c","value":100,"result":212,"category":"temperature"},"meta":{"timestamp":"2026-05-30T09:00:26.239Z","request_id":"9e109eac-a409-4a38-abe7-596b76010011"},"status":"ok","message":"Value converted","success":true}}}},"401":{"description":"Missing or invalid x-oanor-key header"},"402":{"description":"Active subscription required"},"429":{"description":"Rate-limit or monthly quota reached"},"502":{"description":"Upstream did not respond"}}}},"/v1/units":{"get":{"operationId":"get_v1_units","tags":["Unit"],"summary":"List supported units","description":"","parameters":[{"name":"category","in":"query","required":false,"description":"Filter to one category","schema":{"type":"string"},"example":"length"}],"security":[{"oanorKey":[]}],"responses":{"200":{"description":"OK","content":{"application/json":{"example":{"data":{"units":["m","km","dm","cm","mm","um","nm","mi","yd","ft","in","nmi","ly"],"category":"length"},"meta":{"timestamp":"2026-05-30T09:00:26.300Z","request_id":"1852e82b-d646-4b2f-8c80-8cd25d396d7c"},"status":"ok","message":"Units retrieved","success":true}}}},"401":{"description":"Missing or invalid x-oanor-key header"},"402":{"description":"Active subscription required"},"429":{"description":"Rate-limit or monthly quota reached"},"502":{"description":"Upstream did not respond"}}}}},"x-oanor-pricing":[{"slug":"free","name":"Free","price_cents_month":0,"monthly_call_quota":12000,"rps_limit":3,"hard_limit":true},{"slug":"basic","name":"Basic","price_cents_month":500,"monthly_call_quota":350000,"rps_limit":15,"hard_limit":true},{"slug":"pro","name":"Pro","price_cents_month":1700,"monthly_call_quota":2000000,"rps_limit":50,"hard_limit":true},{"slug":"mega","name":"Mega","price_cents_month":4400,"monthly_call_quota":10000000,"rps_limit":150,"hard_limit":true}],"x-oanor-marketplace-url":"https://www.oanor.com/api/unit-api"}