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
Location | Name | Type | Description | Required |
---|---|---|---|---|
Query | id | Integer | The image's ID | No |
Query | url | URL | The image's CDN URL | No |
💡
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