/v1/crew
A pirate crew by id or name
Try it live
10 free calls per day — no sign-up, no API key. Goes through the oanor gateway.
It works. Grab an API key and use it in your project.
Get an API keyCode snippets
curl "https://api.oanor.com/onepiece-api/v1/crew" \ -H "x-oanor-key: oanor_test_..."
await fetch("https://api.oanor.com/onepiece-api/v1/crew", {
headers: { "x-oanor-key": "oanor_test_..." }
});
$ch = curl_init("https://api.oanor.com/onepiece-api/v1/crew");
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/crew",
headers={"x-oanor-key": "oanor_test_..."}
)
Example response
A real response from this endpoint, captured by the latest health check.
{
"data": {
"crew": {
"id": 1,
"name": "The Chapeau de Paille crew",
"status": "assets",
"is_yonko": true,
"roman_name": "Mugiwara no Ichimi",
"description": null,
"member_count": "10",
"total_bounty": "3.161.000.100"
}
},
"meta": {
"timestamp": "2026-06-01T00:04:24.895Z",
"request_id": "6e69d37e-83ff-47c6-864d-5e7ac4d3e1e9"
},
"status": "ok",
"message": "Crew retrieved",
"success": true
}