Distance/duration matrix
API · /routing-api
Routing API
Driving routes with distance, duration and geometry, distance/duration matrices for up to 25 points, and nearest-road snapping — on the global OpenStreetMap road network. Coordinates are simple lat,lon pairs.
API salute
salutare- Tempo di attività
- 100.00%
- Sondaggi del server · 24 ore su 24
- Latenza media
- 146 ms
- Sondaggi del server · 24 ore su 24
- Abbonati
- 3,198
- attiva
- Chiamate totali
- 57
- ultimi 7 giorni
Prezzi
Scegli un livello: fatturazione mensile, annullamento in qualsiasi momento.
Free
Gratis
- 2,500 chiamate/mese
- 2 richieste/secondo
- Tetto rigido (429 sopra la quota, nessuna eccedenza)
- 2k calls/month
- 2 req/sec
- Route + matrix + nearest
- No credit card
Basic
€15.00 /mese
- 40,000 chiamate/mese
- 8 richieste/secondo
- Tetto rigido (429 sopra la quota, nessuna eccedenza)
- 30k calls/month
- 10 req/sec
- Email support
Pro
€45.00 /mese
- 175,000 chiamate/mese
- 20 richieste/secondo
- Tetto rigido (429 sopra la quota, nessuna eccedenza)
- 150k calls/month
- 20 req/sec
- Priority support
Mega
€129.00 /mese
- 700,000 chiamate/mese
- 50 richieste/secondo
- Tetto rigido (429 sopra la quota, nessuna eccedenza)
- 600k calls/month
- 40 req/sec
- Dedicated SLA
Costruito da
Correlato APIs
Altro APIs con tag sovrapposti.
Lightning Network API
Live-Daten für das Lightning Network von Bitcoin – die Instant-Payment-Schicht auf Bitcoin – direkt von der öffentlichen API von mempool.space, kein API-Key, nichts gecached. Der Stats-Endpoint gibt den Zustand des gesamten Netzwerks zurück: wie viele Nodes und Zahlungskanäle existieren, die gesamte in Bitcoin gebundene Kapazität, die durchschnittliche und mediane Kanalkapazität, die durchschnittliche Gebührenrate und die Aufteilung zwischen Clearnet- und Tor-Nodes – das Netzwerk betreibt Zehntausende von Kanälen, die Tausende von BTC halten. Der Top-Endpoint ist die Node-Rangliste, sortiert nach Liquidität (Kapazität) oder Konnektivität (Kanalanzahl), mit Alias, Kapazität und Kanalanzahl jedes Nodes – Bitfinex und Binance betreiben einige der größten Routing-Nodes. Der Search-Endpoint findet Nodes nach Alias und gibt deren öffentlichen Key, Kapazität und Kanalanzahl zurück. Dies ist die Routing- und Liquiditätsschicht für jedes Lightning-Wallet, jeden Node-Betreiber, jede Zahlungs- oder Analyse-App – wer die großen Routing-Nodes sind und wie viel Kapazität das Netzwerk hat. Live von mempool.space, nichts gespeichert. Abgrenzung zu On-Chain-Bitcoin- und Fee-APIs – dies ist die Lightning-Network-Schicht. 4 Endpoints.
api.oanor.com/lightning-api
Polyline API
Encode and decode Google/Mapbox encoded polylines — the compact ASCII string used by the Google Maps Directions API, Mapbox, Valhalla, OSRM and GPX-style route geometry to pack a list of coordinates into a few bytes. Decode an encoded string into an array of latitude/longitude points, encode a coordinate list back into a polyline (precision 5, the Google default, or 6 for OSRM/Valhalla overview), and measure a path — point count, total length by the haversine great-circle formula in km and miles, and the bounding box. Perfect for drawing routes on a map, storing tracks compactly, computing trip distance and fitting a map viewport. Pure local computation — no key, no third-party service, instant. Live, nothing stored. 4 endpoints. Distinct from coordinate-format conversion (Plus Code/MGRS/UTM) and geohash.
api.oanor.com/polyline-api
RIPEstat API
Internet routing and number-resource intelligence as an API, powered by RIPEstat — the open data service of the RIPE NCC, one of the world's five Regional Internet Registries. Answer the questions network engineers, security teams and researchers ask about the public internet: which Autonomous System and prefix does an IP address belong to; what is an AS (its operator/holder name, whether it is currently announced in BGP, its type and registration block); which IPv4 and IPv6 prefixes does an AS announce; who are an AS's BGP neighbours and peers (and how many); who is the abuse-reporting contact for an IP, prefix or ASN, and which RIR is authoritative; and is a prefix correctly originated according to RPKI route-origin validation (valid, invalid or unknown) with the matching ROAs. The data is real-time, drawn from the RIPE NCC's global network of BGP route collectors and the registries. Inputs accept IPv4 and IPv6 addresses, CIDR prefixes and AS numbers (with or without the AS prefix). Ideal for network operations, threat intelligence and abuse handling, BGP and RPKI monitoring, IP reputation and OSINT tooling, and internet research. Data from the RIPE NCC RIPEstat service.
api.oanor.com/ripestat-api
UK Postcode API
UK postcode and geography lookup as an API, built on the open postcodes.io dataset. Resolve any UK postcode to its latitude/longitude and full administrative hierarchy — district, ward, county, parish, parliamentary constituency, region, NHS health authority and statistical areas (LSOA, MSOA). Validate a postcode, reverse-geocode coordinates to the nearest postcodes (with distance), find postcodes near a given one, autocomplete a partial postcode for address forms, look up an outcode (the first half, e.g. SW1A) and fetch a random postcode. Real data, no key needed upstream. Ideal for checkout and address forms, delivery and logistics, store locators, and UK geo-analytics.
api.oanor.com/postcode-api
Domande frequenti
Risposte rapide su prezzi, quote e integrazione.
Come ottengo una chiave API per Routing API?
Qual è il limite di velocità di Routing API?
Quanto costa Routing API?
Posso cancellare l'abbonamento in qualsiasi momento?
Routing API è conforme al GDPR?
Scegli un endpoint dall'elenco a sinistra per visualizzarne i dettagli e provarlo.
Frammenti di codice
Iscriviti per ottenere una chiave API, quindi chiama qualsiasi percorso sotto il tuo slug.
curl https://api.oanor.com/routing-api/SOME_PATH \
-H "x-oanor-key: oanor_test_..."
const res = await fetch("https://api.oanor.com/routing-api/SOME_PATH", {
headers: { "x-oanor-key": "oanor_test_..." }
});
const data = await res.json();
$ch = curl_init("https://api.oanor.com/routing-api/SOME_PATH");
curl_setopt($ch, CURLOPT_RETURNTRANSFER, true);
curl_setopt($ch, CURLOPT_HTTPHEADER, ["x-oanor-key: oanor_test_..."]);
$response = curl_exec($ch);
import requests
r = requests.get(
"https://api.oanor.com/routing-api/SOME_PATH",
headers={"x-oanor-key": "oanor_test_..."},
)
print(r.json())
Valutazioni
Accedi per votare.
Nessuna recensione ancora.
Discussione
Fai domande, condividi consigli, ricevi risposte dal provider e dagli altri sviluppatori. Pubblico — chiunque può leggere.
Accedi per scrivere o rispondere.
AccediNuova discussione
·
-
Risposta del provider
🔒 Discussione bloccata — non si può più rispondere.
-
·
- Nessuna discussione — inizia tu.
Supporto
Supporto privato 1:1 con il provider — fatturazione, integrazione, account. Solo tu e il team del provider vedete questi thread.
Accedi per aprire un ticket di supporto.
AccediApri nuovo ticket
Descrivi cosa ti serve. Il team del provider riceve un'email e risponde sulla pagina del ticket.
-
·
Urgente - Nessun ticket per questa API.