Zum Inhalt springen
GET /v1/meta

Endpoint catalogue & notes

Live testen

10 freie Calls pro Tag — keine Anmeldung, kein API-Key. Geht durchs oanor-Gateway.

Eigene Header (optional)
api.oanor.com/opentol-api

Funktioniert. Hol dir einen API-Key und nutze sie in deinem Projekt.

API-Key holen

Code-Snippets

curl "https://api.oanor.com/opentol-api/v1/meta" \
  -H "x-oanor-key: oanor_test_..."
await fetch("https://api.oanor.com/opentol-api/v1/meta", {
  headers: { "x-oanor-key": "oanor_test_..." }
});
$ch = curl_init("https://api.oanor.com/opentol-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/opentol-api/v1/meta",
    headers={"x-oanor-key": "oanor_test_..."}
)

Beispiel-Response

Echte Antwort dieses Endpoints, erfasst beim letzten Health-Check.

{
    "data": {
        "note": "The Open Tree of Life unifies published phylogenetic trees and taxonomies into one synthetic tree of all life — about 2.3 million named species, each with an Open Tree Taxonomy (OTT) id cross-referenced to NCBI, GBIF and other sources. /v1/match?name=Homo sapiens = resolve a scientific name (or a recognised synonym) to its canonical taxon, returning the OTT id, accepted/unique name, rank, match score, whether it is a synonym/approximate match, and source ids; /v1/taxon?id=770315 = a taxon's classification — name, rank, source ids, synonyms and its full lineage of ancestors (genus, family, order, …) up the tree; /v1/mrca?ids=770315,158484 = the most recent common ancestor of two or more taxa (give OTT ids from /v1/match), returning the MRCA node, the number of descendant tips and the nearest named clade. OTT ids look like 770315 (Homo sapiens); get them from /v1/match. Data from the Open Tree of Life project (CC0). An evolutionary-tree / phylogenetics reference — distinct from species-occurrence (biodiversity/GBIF), marine-taxonomy (WoRMS) and sequence databases. Ideal for biology, evolution, education and bioinformatics tools.",
        "source": "Open Tree of Life (opentreeoflife.org)",
        "endpoints": [
            "/v1/match",
            "/v1/taxon",
            "/v1/mrca",
            "/v1/meta"
        ]
    },
    "meta": {
        "timestamp": "2026-06-01T16:23:12.744Z",
        "request_id": "eed8ab37-3a1a-4bf5-ba34-dba8f8a2250d"
    },
    "status": "ok",
    "message": "Meta retrieved",
    "success": true
}