Get comic issue details

Use getComicIssue to get details on a comic issue. A comic series is made up of multiple comic issues.

Example:

{
  getComicIssue(uuid:"826f3ba0-c231-4d93-95ad-d3e65f9d57b1"){
    uuid
    seriesUuid
    hash
    storiesHash
    bannerImageUrl(variant:SMALL)
    thumbnailImageUrl
    stories{
      uuid
      issueUuid
      seriesUuid
      storyImageAsString
    }
  }
}
Β 
Response from Taddy’s API:
{
  "data": {
    "getComicIssue": {
      "uuid": "826f3ba0-c231-4d93-95ad-d3e65f9d57b1",
      "seriesUuid": "b00c3bc5-2758-483a-942c-4229eb742cb4",
      "hash": "08b4ce69403beb038ce831ea7163d4c9ae81139c52b82c55e0eafe7160d18a99",
      "storiesHash": "94d497b23c9a506d1bec028c70e9901f83a0caafacc60445c77fc6a1f050a55f",
      "bannerImageUrl": "https://ax1.taddy.org/b00c3bc5-2758-483a-942c-4229eb742cb4/f8f972c4-6d77-404e-b5c3-5cf37c3172f3/banner-sm.webp",
      "thumbnailImageUrl": "https://ax1.taddy.org/b00c3bc5-2758-483a-942c-4229eb742cb4/826f3ba0-c231-4d93-95ad-d3e65f9d57b1/43e484b0-6111-41f2-92e2-0b6515655969/thumbnail.webp",
      "stories": [
        {
          "uuid": "9f2120bb-5660-44a3-a3d5-9537bdd438e9",
          "issueUuid": "826f3ba0-c231-4d93-95ad-d3e65f9d57b1",
          "seriesUuid": "b00c3bc5-2758-483a-942c-4229eb742cb4",
          "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\"}"
        },
        {
          "uuid": "5a0bd406-d513-46cf-8fd1-b8474e4e1909",
          "issueUuid": "826f3ba0-c231-4d93-95ad-d3e65f9d57b1",
          "seriesUuid": "b00c3bc5-2758-483a-942c-4229eb742cb4",
          "storyImageAsString": "{\"base_url\":\"https://ay1.taddy.org/b00c3bc5-2758-483a-942c-4229eb742cb4/826f3ba0-c231-4d93-95ad-d3e65f9d57b1/a51fad16-89a9-4a0e-8d2c-88625f8bc957/\",\"story\":\"story.webp\"}"
        },
        ...,
      ]
    }
  }
}

Query Breakdown:

For getComicIssue, you can get details on any issue using one of the following properties:
" Unique identifier for a comic issue "
uuid: ID,

" The name (title) of an issue. Note: Multiple issues can have the exact same name, in that case we always try to return the most popular comic (based on infomation we have on the subscriber count)"
name: String
Β 
The response you get back is a ComicIssue. That means you can return any of the following details:
" Unique identifier for a comic issue "
uuid: ID

" Unique identifier for a comic series this issue belongs to "
seriesUuid: ID

" Date when the issue was published (Epoch time in seconds) "
datePublished: Int

" The name (title) of the issue "
name: String

" Short note from the creator for the issue "
creatorNote: String

" Push notification message for the issue "
pushNotificationMessage: String

" A different hash means that details for this issue have updated since the last hash "
hash: String

" A different hash means that details for the stories that make up this issue have updated since the last hash "
storiesHash: String

" Stringified JSON details for the banner art. Convert to JSON to use."
bannerImageAsString: String

" Stringified JSON details for the thumbnail art. Convert to JSON to use."
thumbnailImageAsString: String

" The banner art for an issue "
bannerImageUrl(
  " (Optional) size / variant. Default is SMALL "
  variant: ImageVariant
):String

" The thumbnail art for an issue "
thumbnailImageUrl: String

" All the images for this issue "
imageUrls: [String]

" Details on all the stories for this issue "
stories: [ComicStory]

" Position of this issue in relation to other issues. This is used to sort issues by oldest or latest in a series. "
position: Int

" If the issue has now been removed from the SSS Feed "
isRemoved: Boolean

" If the content has violated Taddy's distribution policies for illegal or harmful content it will be blocked from getting any updates "
isBlocked: Boolean

" Details on the comic for which this issue 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:
πŸ’³PricingπŸ“Terms of ServiceπŸ§‘β€πŸ’»Developer Policy