/v1/meta
Usage notes
Live testen
10 freie Calls pro Tag — keine Anmeldung, kein API-Key. Geht durchs oanor-Gateway.
Funktioniert. Hol dir einen API-Key und nutze sie in deinem Projekt.
API-Key holenCode-Snippets
curl "https://api.oanor.com/onepiece-api/v1/meta" \ -H "x-oanor-key: oanor_test_..."
await fetch("https://api.oanor.com/onepiece-api/v1/meta", {
headers: { "x-oanor-key": "oanor_test_..." }
});
$ch = curl_init("https://api.oanor.com/onepiece-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/onepiece-api/v1/meta",
headers={"x-oanor-key": "oanor_test_..."}
)
Beispiel-Response
Echte Antwort dieses Endpoints, erfasst beim letzten Health-Check.
{
"data": {
"note": "The world of One Piece. /v1/character = a character by id or name search (e.g. id=1 → Monkey D. Luffy, bounty, crew, Devil Fruit, job, status); /v1/crew = a pirate crew by id or name (description, total bounty, Yonko status); /v1/fruit = a Devil Fruit by id or name (type, description). Pass id= for an exact record or name= to search.",
"source": "api-onepiece.com",
"endpoints": [
"/v1/character",
"/v1/crew",
"/v1/fruit",
"/v1/meta"
]
},
"meta": {
"timestamp": "2026-06-01T00:04:25.218Z",
"request_id": "132f3891-df61-4c00-8139-b27ee65d1427"
},
"status": "ok",
"message": "Meta retrieved",
"success": true
}