Documentation
Images
Get a Tag's Images

Get a Tag's Images

This endpoint allows you to get all images with a certain tag.

Endpoint Details

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

Parameters

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

Example Request

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