84 lines
1.2 KiB
Plaintext
84 lines
1.2 KiB
Plaintext
|
# @name AniList Item
|
||
|
|
||
|
POST https://graphql.anilist.co
|
||
|
Accept: applicaton/json
|
||
|
X-REQUEST-TYPE: Graphql
|
||
|
Authorization: Bearer {{ANILIST_ACCESS_TOKEN}}
|
||
|
|
||
|
query ($userId: Int, $mediaId: Int, $listType: MediaType) {
|
||
|
MediaList(mediaId: $mediaId, userId: $userId, type: $listType) {
|
||
|
id
|
||
|
mediaId
|
||
|
userId
|
||
|
media {
|
||
|
id
|
||
|
idMal
|
||
|
tags {
|
||
|
id
|
||
|
name
|
||
|
description
|
||
|
rank
|
||
|
isMediaSpoiler
|
||
|
isAdult
|
||
|
}
|
||
|
title {
|
||
|
romaji
|
||
|
english
|
||
|
native
|
||
|
}
|
||
|
description
|
||
|
coverImage {
|
||
|
large
|
||
|
}
|
||
|
season
|
||
|
seasonYear
|
||
|
status
|
||
|
episodes
|
||
|
nextAiringEpisode {
|
||
|
airingAt
|
||
|
timeUntilAiring
|
||
|
episode
|
||
|
}
|
||
|
isAdult
|
||
|
}
|
||
|
status
|
||
|
startedAt {
|
||
|
year
|
||
|
month
|
||
|
day
|
||
|
}
|
||
|
completedAt {
|
||
|
year
|
||
|
month
|
||
|
day
|
||
|
}
|
||
|
notes
|
||
|
progress
|
||
|
score
|
||
|
repeat
|
||
|
user {
|
||
|
id
|
||
|
name
|
||
|
avatar {
|
||
|
large
|
||
|
medium
|
||
|
}
|
||
|
statistics {
|
||
|
anime {
|
||
|
count
|
||
|
statuses {
|
||
|
status
|
||
|
count
|
||
|
}
|
||
|
}
|
||
|
}
|
||
|
}
|
||
|
}
|
||
|
}
|
||
|
|
||
|
{
|
||
|
"userId": 413504,
|
||
|
"mediaId": 170998,
|
||
|
"listType": "ANIME"
|
||
|
}
|