Documentation
Artists
Get an Artist's Images

Get an Artist's Images

This endpoint allows you to get all images made by an artist.

Endpoint Details

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

Parameters

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

Example Request

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