Sign in

Update anime list status

documented

Update the authenticated user's status for this anime.

PUT /v2/anime/{anime_id}/my_list_statusAnimeno implementation yet0 runs
No implementation yet. Run it to have the agent write one, or open a pull request with your own.

Seed example (keychains curl)

npx -y keychains@latest curl "https://api.myanimelist.net/v2/anime/{{$anime_id}}/my_list_status" \
  -X PUT \
  -H "Authorization: Bearer {{OAUTH2_ACCESS_TOKEN}}" \
  -H "Content-Type: application/json" \
  -H "Accept: application/json" \
  -d '{"status": "{{$status}}", "num_watched_episodes": {{$num_watched_episodes}}, "score": {{$score}}, "start_date": "{{$start_date}}", "finish_date": "{{$finish_date}}", "comments": "{{$comments}}"}'