anitrack/bruno/AniTrack/AniList Item.bru

53 lines
697 B
Plaintext

meta {
name: AniList Item
type: graphql
seq: 2
}
post {
url: https://graphql.anilist.co
body: graphql
auth: none
}
headers {
Content-Type: "application/json"
Accept: "application/json"
}
body:graphql {
query ($id: Int, $listType: MediaType) {
Media(id: $id, type: $listType) {
id
idMal
title {
romaji
english
native
}
description
coverImage {
large
}
tags {
id
name
description
category
rank
isGeneralSpoiler
isMediaSpoiler
isAdult
}
}
}
}
body:graphql:vars {
{
"id": 157371,
"listType": "ANIME"
}
}