Get details on creators

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

Example:

{
  getMultipleCreators(uuids:["5a4977e8-b0da-4cc7-a516-16a0fb6973d8"]){
    uuid
    name
    bio
    hash
    contentHash
    avatarImageUrl
    tags
  }
}
Β 
Response from Taddy’s API:
{
  "data": {
    "getMultipleComicSeries": [
      "uuid": "5a4977e8-b0da-4cc7-a516-16a0fb6973d8",
      "name": "Zachary Morris",
      "bio": null,
      "hash": "2b80ecea81312717bcbe1872aa80c52ede308993819fdbafa2027ee123ed565c",
      "contentHash": "9d982608495697f438e0e31d768fdb297d1e6984f013842b2ccc982562c343a6",
      "avatarImageUrl": "https://ax1.taddy.org/5a4977e8-b0da-4cc7-a516-16a0fb6973d8/c414e9a8-8d27-4280-9e43-a2e5445a9626/avatar-sm.webp",
      "tags": [
        "zachmorris",
        "willdrawforfood1",
        "cartoonist"
      ],
    ]
  }
}

Query Breakdown:

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

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

" The name of the creator "
name: String

" A short bio on the creator "
bio: String

" The avatar image for the creator"
avatarImageUrl(
  " (Optional) size / variant. Default is SMALL "
  variant: ImageVariant
):String

" Stringified JSON details for the avatar image. Convert to JSON to use."
avatarImageAsString: String

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

" A hash of the details for all different content a creator makes. 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 content since the last time you checked "
contentHash: String

" A list of content for this creator "
content(
  " Sort order for the results. Default is LATEST (newest first), another option is OLDEST (oldest first) "
  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 results. Default is 10, Max value allowed is 25 results per page "
  limitPerPage: Int
): [CreatorContent]

" The total number of content from this creator "
totalContentCount: Int

" Tags for the creator "
tags: [String]

" Stringified JSON details for the links to creator's website, email, and social media. Convert to JSON to use."
linksAsString: String

" Links to creator's website, email, and social media "
links: [LinkDetails]

" The country in which the creator is resides in or is from "
country: Country

" Url for the creator'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
Β