/v1/meta
Spec
Δοκιμάστε το ζωντανά
10 δωρεάν κλήσεις την ημέρα — χωρίς εγγραφή, χωρίς κλειδί API. Μέσω του gateway του oanor.
Δουλεύει. Πάρε ένα κλειδί API και χρησιμοποίησέ το στο έργο σου.
Λάβετε ένα κλειδί APIΑποσπάσματα κώδικα
curl "https://api.oanor.com/inaturalist-api/v1/meta" \ -H "x-oanor-key: oanor_test_..."
await fetch("https://api.oanor.com/inaturalist-api/v1/meta", {
headers: { "x-oanor-key": "oanor_test_..." }
});
$ch = curl_init("https://api.oanor.com/inaturalist-api/v1/meta");
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/inaturalist-api/v1/meta",
headers={"x-oanor-key": "oanor_test_..."}
)
Παράδειγμα απόκρισης
Πραγματική απόκριση αυτού του endpoint, από τον τελευταίο έλεγχο υγείας.
{
"data": {
"service": "inaturalist-api",
"endpoints": {
"GET /v1/meta": "This document.",
"GET /v1/taxa": "Search taxa (species).",
"GET /v1/taxon": "Taxon detail by id (ancestry, photos, conservation).",
"GET /v1/places": "Place autocomplete.",
"GET /v1/observers": "Top observers (place_id or taxon_id).",
"GET /v1/observation": "Observation detail by id.",
"GET /v1/observations": "Search observations (q, taxon_name, place_id, order_by).",
"GET /v1/species-counts": "Most-observed species in a place (place_id or lat/lng)."
},
"description": "iNaturalist: citizen-science nature data — search observations (with photos), observation detail, search taxa (species) and taxon detail, most-observed species per place, place autocomplete and top observers. Real live data, no key."
},
"meta": {
"timestamp": "2026-06-07T16:46:50.915Z",
"request_id": "bcfb205a-ee66-46e0-b89f-d02b3c24e88f"
},
"status": "ok",
"message": "Meta",
"success": true
}