Get creator details

Use getCreator to get details on a specific creator.

Example:

{
  getCreator(uuid:"5a4977e8-b0da-4cc7-a516-16a0fb6973d8"){
    uuid
    name
    bio
    hash
    contentHash
  	avatarImageUrl
    tags
    country
    links{
      type
      url
    }
		content{
      hash
      creatorUuid
      contentUuid
      contentType
      roles
    }
    sssUrl
    sssOwnerName
    sssOwnerPublicEmail
    copyright
    isBlocked
  }
}
Β 
Response from Taddy’s API:
{
  "data": {
    "getCreator": {
      "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"
      ],
      "country": "UNITED_STATES_OF_AMERICA",
      "links": [
        {
          "type": "PATREON",
          "url": "https://patreon.com/zachmorris"
        },
        {
          "type": "TWITTER",
          "url": "https://twitter.com/toonzach"
        }
      ],
      "content": [
        {
          "hash": "f2c93ef053a62b05da1092cb39e41726da9fbbe436888b4d53dd6c9067839013",
          "creatorUuid": "5a4977e8-b0da-4cc7-a516-16a0fb6973d8",
          "contentUuid": "71113968-45a2-4c30-b770-655b57ae0de6",
          "contentType": "COMICSERIES",
          "roles": [
            "COMICSERIES_ARTIST",
            "COMICSERIES_WRITER"
          ]
        }
      ],
      "sssUrl": "https://taddy.org/feeds/sss/creator/5a4977e8-b0da-4cc7-a516-16a0fb6973d8",
      "sssOwnerName": null,
      "sssOwnerPublicEmail": null,
      "copyright": "Copyright notice available at http://3s-docs.org/creator-friendly-copyright-notice",
      "isBlocked": null
    }
  }
}

Query Breakdown:

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

" A podcast's RSS Feed "
sssUrl: String

" The name of a creator. Note: Multiple creators can have the exact same name, in that case we always try to return the most popular creator (based on the infomation we have)"
name: String
Β 
The response you get back is a of Creator. That means you can return any of the following details:
" 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