Documentation
Characters
Get a Character's Images

Get a Character's Images

This endpoint allows you to get all images picturing a certain character.

Endpoint Details

  • URL: /v3/characters/{id}/images
  • Method: GET
  • Response: JSON

Parameters

LocationNameTypeDescriptionRequired
PathidIntegerThe character's ID.Yes
QuerylimitInteger [1..100]The amount of images to return.No
QueryoffsetIntegerThe amount of images to skip.No

Example Request

character_images.py
import requests
 
res = requests.get(f"https://api.nekosapi.com/v3/characters/{artist_id}/images")
res.raise_for_status()
 
data = res.json()