anitrack/bruno/AniTrack/MAL/Get AnimeList.bru

26 lines
351 B
Plaintext
Raw Normal View History

2024-08-15 21:27:53 -04:00
meta {
name: Get AnimeList
type: http
seq: 3
}
get {
url: https://api.myanimelist.net/v2/users/{{MAL_USER}}/animelist?fields=list_status&status=watching&limit=1000
body: formUrlEncoded
auth: bearer
}
params:query {
fields: list_status
status: watching
limit: 1000
}
headers {
:
}
auth:bearer {
token: {{MAL_ACCESS_TOKEN}}
}