Home
|
Open-Access REST API

One Piece APIDocumentation

Access all the data from the One Piece universe: characters, crews, Devil Fruits, locations, and much more.

17categories
87endpoints
JSONformat

Base URL

All requests must use this URL
https://api.api-onepiece.com/v2

Categories

16 available categories

Get started in just a few seconds

The One Piece API is free and requires no authentication. Simply send an HTTP request to any endpoint.

  • 1Select an endpoint from the documentation
  • 2Make a GET request using fetch, axios, or your favorite tool
  • 3Receive the data in JSON format
Quick Example
JAVASCRIPT
// Sample Queryfetch("https://api.onepiece.example.com/v1/personnages/1").then(response => response.json()).then(data => console.log(data));// Response{"id": 1,"nom": "Monkey D. Luffy","prime": 3000000000}
Publicity