Download raw schema →

FieldTypeRequiredDescription
idintegerrequiredUnique numeric identifier for this page.
comic_idstringrequiredID of the parent comic.
page_numberintegerrequired1-indexed position within the comic's archive.
urlstring (uri) | nulloptionalCanonical URL of the page on the source website.
image_urlstring (uri)requiredDirect URL of the page's image asset.
titlestring | nulloptionalPage title.
alt_textstring | nulloptionalAlt text or hover text for the page image.
published_atstring (date-time) | nulloptionalISO 8601 publication timestamp.
group_idstring | nulloptionalGroup (chapter/act/arc) this page belongs to.
prev_pageinteger | nulloptionalPrevious page number. Present on the single-page endpoint; null for the first page.
next_pageinteger | nulloptionalNext page number. Present on the single-page endpoint; null for the last page.

Example

{
  "id": 1,
  "comic_id": "my-comic",
  "page_number": 1,
  "title": "Page 1",
  "url": "https://example.com/my-comic/page/1",
  "image_url": "https://example.com/my-comic/img/001.jpg",
  "group_id": "chapter-1"
}