Aller au contenu
GET /v1/fruit

A Devil Fruit by id or name

Essayez-le en direct

10 appels gratuits par jour — sans inscription, sans clé API. Passe par la passerelle oanor.

En-têtes personnalisés (facultatif)
api.oanor.com/onepiece-api

Ça marche. Récupérez une clé API et utilisez-la dans votre projet.

Obtenez une clé API

Extraits de code

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

Exemple de réponse

Une réponse réelle de ce endpoint, capturée lors du dernier contrôle de santé.

{
    "data": {
        "fruit": {
            "id": 1,
            "name": "Gum-Gum Fruit",
            "type": "Paramecia",
            "roman_name": "Gomu Gomu no Mi",
            "description": "Gomu Gomu no Mi, also known as the Fruit of Gum-Gum in French, is a Paramecia-type Demon Fruit that imparts the same properties as rubber to its user's body, making the eater an Elastic Man (ゴム人間, Gomu Ningen). This was once a treasure that Shanks and his crew had taken from a World Government convoy, protected by CP9, but which was accidentally eaten by Monkey D. Luffy"
        }
    },
    "meta": {
        "timestamp": "2026-06-01T00:04:25.149Z",
        "request_id": "6d07050b-8ca8-405a-aa97-fb5225f13283"
    },
    "status": "ok",
    "message": "Fruit retrieved",
    "success": true
}