/v1/random
A random dinosaur (optionally by period)
Provalo dal vivo
10 chiamate gratuite al giorno — senza registrazione, senza chiave API. Passa dal gateway oanor.
Funziona. Prendi una chiave API e usala nel tuo progetto.
Ottieni una chiave APIFrammenti di codice
curl "https://api.oanor.com/dinosaurs-api/v1/random" \ -H "x-oanor-key: oanor_test_..."
await fetch("https://api.oanor.com/dinosaurs-api/v1/random", {
headers: { "x-oanor-key": "oanor_test_..." }
});
$ch = curl_init("https://api.oanor.com/dinosaurs-api/v1/random");
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/dinosaurs-api/v1/random",
headers={"x-oanor-key": "oanor_test_..."}
)
Risposta di esempio
Una risposta reale di questo endpoint, acquisita dall'ultimo health check.
{
"data": {
"id": 437,
"name": "Boreonykus",
"lived": {
"max_ma": 83.6,
"min_ma": 72.2,
"late_interval": null,
"early_interval": "Campanian"
},
"period": "Cretaceous",
"named_by": "Bell and Currie 2016"
},
"meta": {
"timestamp": "2026-05-31T02:02:07.254Z",
"request_id": "6f838ec3-9a29-4dc9-ae29-c23c7c3ddbfa"
},
"status": "ok",
"message": "Random dinosaur",
"success": true
}