/v1/meta
Usage notes
Probeer het live
10 gratis calls per dag — geen registratie, geen API-key. Loopt via de oanor-gateway.
Het werkt. Haal een API-key op en gebruik hem in je project.
Verkrijg een API-sleutelCodefragmenten
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_..."}
)
Voorbeeldrespons
Een echte respons van dit endpoint, vastgelegd bij de laatste 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
}