Get details on multiple comics

Use getMultipleComicSeries to get details on multiple comics. There is a max limit of 25 comics per request.

Example:

{
  getMultipleComicSeries(uuids:["e418408c-2d72-4a5b-8765-46df6b724d53", 
"b00c3bc5-2758-483a-942c-4229eb742cb4"]){
    uuid
    name
    description
    sssUrl
  }
}
Β 
Response from Taddy’s API:
{
  "data": {
    "getMultipleComicSeries": [
      {
        "uuid": "e418408c-2d72-4a5b-8765-46df6b724d53",
        "name": "Dreams Broken : Purpose",
        "description": "Unfair from the day he was born, but born rich working as a janitor for his company. Losing family, love, and friends won't hurt Jin anymore. Jin who came to know about life at a younger age lost everything that mattered to him. Lost his family for saving his love and then lost the love of his life for saving the country.",
        "sssUrl": "https://taddy.org/feeds/sss/comicseries/e418408c-2d72-4a5b-8765-46df6b724d53"
      },
      {
        "uuid": "b00c3bc5-2758-483a-942c-4229eb742cb4",
        "name": "Warrior's Strife",
        "description": "Frayja has trained all her life to become the greatest warrior in her clan. She has been taught to fear and hate elves and their magic. But a day on the battlefield dramatically alters her perspective on reality.",
        "sssUrl": "https://taddy.org/feeds/sss/comicseries/b00c3bc5-2758-483a-942c-4229eb742cb4"
      }
    ]
  }
}

Query Breakdown:

For getMultipleComicSeries, you can get details on comics by passing in an array of uuids.
" An Array of unique identifiers (uuid). Max 25 IDs allowed "
uuids: [ID]
Β 
The response you get back is an array of ComicSeries.
" Unique identifier for this comic "
uuid: ID

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

" The name (title) for a comic "
name: String

" The description for a comic "
description: String

" Status of the comic "
status: SeriesStatus

" The cover art for a comic "
coverImageUrl(
  " (Optional) size / variant. Default is SMALL "
  variant: ImageVariant
):String

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

" The thumbnail art for a comic "
thumbnailImageUrl: String

" Stringified JSON details for the cover art. Convert to JSON to use."
coverImageAsString: 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

" A hash of all comic details. It may be useful for you to save this property in your database and compare it to know if any comic details have updated since the last time you checked "
hash: String

" A hash of the details for all issues for this comic. It may be useful for you to save this property in your database and compare it to know if there are any new or updated issues since the last time you checked "
issuesHash: String

" A list of issues for this comic "
issues(
  " (Optional) Returns issues based on SortOrder. Default is LATEST (newest issues first), another option is OLDEST (oldest issues first), and another option is SEARCH (pass in the property searchTerm) to filter for issues by title or description. "
  sortOrder: SortOrder,

  " (Optional) Taddy paginates the results returned. Default is 1, Max value allowed is 1000 "
  page: Int,

  " (Optional) Return up to this number of issues. Default is 10, Max value allowed is 25 results per page "
  limitPerPage: Int,

  " (Optional) Only to be used when sortOrder is SEARCH. Filters through the title & description of issues for the searchTerm "
  searchTerm: String,

  " (Optional) The option to show issues that were once on the SSS feed but have now been removed. Default is false (do not include removed episodes) "
  includeRemovedIssues: Boolean,
): [ComicIssue]

" The number of issues for this comic "
totalIssuesCount(
  " (Optional) Option to include issues that were once on the SSS feed but have now been removed. Default is false (do not include removed episodes) "
  includeRemovedIssues: Boolean
): Int

" Tags for the comic "
tags: [String]

" A comic can belong to multiple genres but they are listed in order of importance. "
genres: [Genre]

" The language the comic is in "
language: Language

" Creators of the comic "
creators: [Creator]

" Type of the comic "
seriesType: ComicSeriesType

" Layout of the comic "
seriesLayout: ComicSeriesLayout

" Rating of the comic "
contentRating: ContentRating

" Url for the comic's SSS feed "
sssUrl: String

" Name to use for contacting the owner of this feed "
sssOwnerName: String

" Email to use for contacting the owner of this feed "
sssOwnerPublicEmail: String

" Copyright details for this feed "
copyright: String

" Details on how often the SSS feed is checked for new details "
feedRefreshDetails: FeedRefreshDetails

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

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