Use getComicStory to get details on a comic story ie) one of the images in an issue
Example:
{
getComicStory(uuid:"9f2120bb-5660-44a3-a3d5-9537bdd438e9"){
uuid
issueUuid
seriesUuid
storyImageUrl
storyImageAsString
}
}
Β
Response from Taddyβs API:
{
"data": {
"getComicStory": {
"uuid": "9f2120bb-5660-44a3-a3d5-9537bdd438e9",
"issueUuid": "826f3ba0-c231-4d93-95ad-d3e65f9d57b1",
"seriesUuid": "b00c3bc5-2758-483a-942c-4229eb742cb4",
"storyImageUrl": "https://ay1.taddy.org/b00c3bc5-2758-483a-942c-4229eb742cb4/826f3ba0-c231-4d93-95ad-d3e65f9d57b1/9bb57b57-0c0c-4d1a-8eed-0d64daf347d9/story.webp",
"storyImageAsString": "{\"base_url\":\"https://ay1.taddy.org/b00c3bc5-2758-483a-942c-4229eb742cb4/826f3ba0-c231-4d93-95ad-d3e65f9d57b1/9bb57b57-0c0c-4d1a-8eed-0d64daf347d9/\",\"story\":\"story.webp\"}"
}
}
}
Query Breakdown:
For getComicStory, you can get details on a story by passing in an uuid.
" Unique identifier for a comic story"
uuid: ID
Β
The response you get back is a ComicStory. That means you can return any of the following details:
" Unique identifier for a comic story "
uuid: ID
" Unique identifier for a comic issue this story belongs to "
issueUuid: ID
" Unique identifier for a comic series this story belongs to "
seriesUuid: ID
" A different hash means that details for this story have updated since the last hash "
hash: String
" Stringified JSON details for the story art. Convert to JSON to use."
storyImageAsString: String
" The story art "
storyImageUrl:String
" If the story has now been removed from the SSS Feed "
isRemoved: Boolean
" Details on the comic issue that this story belongs to "
comicIssue: ComicIssue
" Details on the comic series that this story belongs to "
comicSeries: ComicSeries
Referenced types in this document:
Β
If you are new to using Taddyβs API, Get Started with our π€Β Intro to Taddyβs API.
Β
More Links:
PricingTerms of ServiceDeveloper Policy