76 lines
1.0 KiB
Plaintext
76 lines
1.0 KiB
Plaintext
|
meta {
|
||
|
name: AniList Search
|
||
|
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 ($search: String!, $listType: MediaType) {
|
||
|
Page (page: 1, perPage: 100) {
|
||
|
pageInfo {
|
||
|
total
|
||
|
currentPage
|
||
|
lastPage
|
||
|
hasNextPage
|
||
|
perPage
|
||
|
}
|
||
|
media (search: $search, type: $listType) {
|
||
|
id
|
||
|
idMal
|
||
|
title {
|
||
|
romaji
|
||
|
english
|
||
|
native
|
||
|
}
|
||
|
description
|
||
|
coverImage {
|
||
|
large
|
||
|
}
|
||
|
season
|
||
|
seasonYear
|
||
|
status
|
||
|
episodes
|
||
|
nextAiringEpisode{
|
||
|
airingAt
|
||
|
timeUntilAiring
|
||
|
episode
|
||
|
}
|
||
|
}
|
||
|
}
|
||
|
}
|
||
|
}
|
||
|
|
||
|
body:graphql:vars {
|
||
|
{
|
||
|
"search": "frieren",
|
||
|
"listType": "ANIME"
|
||
|
}
|
||
|
}
|
||
|
|
||
|
docs {
|
||
|
Title
|
||
|
|
||
|
Image
|
||
|
|
||
|
Description
|
||
|
|
||
|
Episodes
|
||
|
|
||
|
Status
|
||
|
|
||
|
Season
|
||
|
|
||
|
External & Streaming Links
|
||
|
}
|