Skip to main content
GET
/
api
/
v1
/
characters
/
{slug}
Get Character
curl --request GET \
  --url https://api.example.com/api/v1/characters/{slug}
{
  "status": "success",
  "data": {
    "id": "...",
    "name": "Itachi Uchiha",
    "slug": "itachi-uchiha",
    "description": "A prodigy of the Uchiha clan...",
    "role": "supporting",
    "anime": {
      "id": "...",
      "name": "Naruto Shippuden",
      "slug": "naruto-shippuden"
    },
    "images": [
      {
        "id": "...",
        "image_url": "https://...",
        "image_type": "profile",
        "is_primary": true
      }
    ]
  }
}

Documentation Index

Fetch the complete documentation index at: https://docs.aniquotes.myproj.xyz/llms.txt

Use this file to discover all available pages before exploring further.

Path Parameters

slug
string
required
The URL slug of the character (e.g., itachi-uchiha)
{
  "status": "success",
  "data": {
    "id": "...",
    "name": "Itachi Uchiha",
    "slug": "itachi-uchiha",
    "description": "A prodigy of the Uchiha clan...",
    "role": "supporting",
    "anime": {
      "id": "...",
      "name": "Naruto Shippuden",
      "slug": "naruto-shippuden"
    },
    "images": [
      {
        "id": "...",
        "image_url": "https://...",
        "image_type": "profile",
        "is_primary": true
      }
    ]
  }
}