Skip to main content
POST
/
api
/
v1
/
quotes
/
{quote_id}
/
report
Report Quote
curl --request POST \
  --url https://api.example.com/api/v1/quotes/{quote_id}/report \
  --header 'Content-Type: application/json' \
  --data '
{
  "reason": "<string>",
  "details": "<string>"
}
'
{
  "status": "success",
  "message": "Report submitted"
}

Documentation Index

Fetch the complete documentation index at: https://docs.aniquotes.myproj.xyz/llms.txt

Use this file to discover all available pages before exploring further.

Path Parameters

quote_id
string
required
The UUID of the quote to report

Body Parameters

reason
string
required
One of: inaccurate, offensive, duplicate, wrong_character, wrong_anime, other
details
string
Optional additional details about the report
{
  "status": "success",
  "message": "Report submitted"
}