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
}
]
}
}
Characters
Get Character
Get character details with images and anime info
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
}
]
}
}
Path Parameters
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
}
]
}
}
⌘I