Documentation
Images
Report an Image

Report an Image

This endpoint allows you to create an image report. Use it when you think that an image has incorrect information. Using this endpoint multiple times won't report the image multiple times. It also won't create a new report if the image already has one. You can check the report status with the is_flagged attribute of the image.

Endpoint Details

  • URL: /v3/images/report
  • Method: POST
  • Response: Empty

Parameters

LocationNameTypeDescriptionRequired
QueryidIntegerThe image's IDNo
QueryurlURLThe image's CDN URLNo
💡

Either id or url must be present.

Example Request

image_report.py
import requests
 
res = requests.post(f"https://api.nekosapi.com/v3/images/report?id={image_id}")
res.raise_for_status()
 
# Response is empty as it returns a 204