Report
Reports an image.
POST
https://api.waifu.im/report
Used to report any inappropriate, offensive or wrongly labelled image in the API.
Requires report
permission.
Headers
Name
Type
Description
Authorization*
string
Bearer
followed by a space and your token
Request Body
Name
Type
Description
image_id*
integer
The ID of the image to report.
description
string
A brief explanation (up to 200 characters) used to describe the issue.
{
"author_id": "428346579283272370",
"description": "The tag 'maid' does not suit the image.",
"existed": false,
"image_id": 8008
}
If the image was already reported the existed
key will be true.
curl -X POST \
'https://api.waifu.im/report' \
-H 'Content-Type: application/json' \
-H 'Accept-Version: v5' \
-H 'Authorization: Bearer TjBY0MBcS3-SEc3Ms6T4GKjHGJkbqM6McejlQdnqo2y47jWNLa4agsWYdJukocDqHpm2zYFO5z2AjMzkUSfLsCz1AgbDhSjKLMIOnhJGFgODgOkSnzaAWzvGZZPdbm6vOTxs2chmz-3DSRVzwQLl__eYE4Wnjtr0aIGzXlo82M0' \
-d '{
"image_id": 8008,
"description": "The tag '\''maid'\'' does not suit the image."
}'
Last updated
Was this helpful?