Skip to content

Issue

Credit

Bases: BaseModel

A class representing a credit with ID, creator, and role.

ATTRIBUTE DESCRIPTION
id

The ID of the credit.

TYPE: int

creator

The creator associated with the credit.

TYPE: str

role

The role of the credit.

TYPE: list[GenericItem]

CreditPost

Bases: BaseModel

A data model representing a credit to be created.

ATTRIBUTE DESCRIPTION
issue

The ID of the issue.

TYPE: int

creator

The ID of the creator.

TYPE: int

role

The IDs of the roles.

TYPE: list[int]

CreditPostResponse

Bases: CreditPost

A data model representing the response after creating a credit.

ATTRIBUTE DESCRIPTION
id

The ID of the credit.

TYPE: int

issue

The ID of the issue.

TYPE: int

creator

The ID of the creator.

TYPE: int

role

The IDs of the roles.

TYPE: list[int]

modified

The date and time when the credit was modified.

TYPE: datetime

BasicSeries

Bases: BaseModel

A class representing a basic series with name, volume, and year began.

ATTRIBUTE DESCRIPTION
name

The name of the series.

TYPE: str

volume

The volume of the series.

TYPE: int

year_began

The year the series began.

TYPE: int

IssueSeries

Bases: BaseModel

A data model representing an issue series.

ATTRIBUTE DESCRIPTION
id

The unique identifier of the issue series.

TYPE: int

name

The name of the issue series.

TYPE: str

sort_name

The name used for sorting the issue series.

TYPE: str

volume

The volume number of the issue series.

TYPE: int

year_began

The year the issue's series began.

TYPE: int

series_type

The type of the issue series.

TYPE: GenericItem

genres

The genres associated with the issue series.

TYPE: list[GenericItem]

CommonIssue

Bases: BaseModel

A data model representing a common issue.

ATTRIBUTE DESCRIPTION
id

The unique identifier of the common issue.

TYPE: int

number

The number of the common issue.

TYPE: str

cover_date

The cover date of the common issue.

TYPE: date

store_date

The store date of the common issue.

TYPE: date

foc_date

The final order cutoff date of the issue.

TYPE: date

image

The image URL of the common issue.

TYPE: HttpUrl

cover_hash

The hash value of the common issue cover.

TYPE: str

modified

The date and time when the common issue was last modified.

TYPE: datetime

BaseIssue

Bases: CommonIssue

A data model representing a base issue that extends CommonIssue.

ATTRIBUTE DESCRIPTION
issue_name

The name of the base issue.

TYPE: str

series

The basic series associated with the base issue.

TYPE: BasicSeries

Issue

Bases: CommonIssue

A data model representing an issue that extends CommonIssue.

ATTRIBUTE DESCRIPTION
publisher

The publisher of the issue.

TYPE: GenericItem

imprint

The imprint of the issue or None.

TYPE: GenericItem

series

The series to which the issue belongs.

TYPE: IssueSeries

alt_number

The alternative number of the issue.

TYPE: str

collection_title

The title of the issue collection.

TYPE: str

story_titles

The titles of the stories in the issue.

TYPE: list[str]

price

The price of the issue.

TYPE: Decimal

price_currency

The currency type for the price field.

TYPE: str

rating

The rating of the issue.

TYPE: GenericItem

sku

The stock keeping unit (SKU) of the issue.

TYPE: str

isbn

The International Standard Book Number (ISBN) of the issue.

TYPE: str

upc

The Universal Product Code (UPC) of the issue.

TYPE: str

page_count

The number of pages in the issue.

TYPE: int

desc

The description of the issue.

TYPE: str

arcs

The arcs associated with the issue.

TYPE: list[BaseResource]

credits

The credits for the issue.

TYPE: list[Credit]

characters

The characters featured in the issue.

TYPE: list[BaseResource]

teams

The teams involved in the issue.

TYPE: list[BaseResource]

universes

The universes related to the issue.

TYPE: list[BaseResource]

reprints

The reprints of the issue.

TYPE: list[Reprint]

variants

The variants of the issue.

TYPE: list[Variant]

cv_id

The Comic Vine ID of the issue.

TYPE: int

gcd_id

The Grand Comics Database ID of the issue.

TYPE: int

resource_url

The URL of the issue resource.

TYPE: HttpUrl

IssuePost

Bases: BaseModel

A data model representing an issue to be created.

ATTRIBUTE DESCRIPTION
series

The ID of the series to which the issue belongs.

TYPE: int

number

The number of the issue.

TYPE: str

alt_number

The alternative number of the issue.

TYPE: str

title

The collection title of the issue.

TYPE: str

name

The story titles of the issue.

TYPE: list[str]

cover_date

The cover date of the issue.

TYPE: date

store_date

The store date of the issue.

TYPE: date

foc_date

The final order cutoff date of the issue.

TYPE: date

price

The price of the issue. Pass a plain Decimal for USD or a PricePost object for non-USD currencies (e.g. GBP).

TYPE: Decimal | PricePost

rating

The ID of the rating of the issue.

TYPE: int

sku

The SKU of the issue.

TYPE: str

isbn

The ISBN of the issue.

TYPE: str

upc

The UPC of the issue.

TYPE: str

page

The number of pages in the issue.

TYPE: int

desc

The description of the issue.

TYPE: str

image

The image URL of the issue.

TYPE: str

arcs

The IDs of the arcs associated with the issue.

TYPE: list[int]

characters

The IDs of the characters featured in the issue.

TYPE: list[int]

teams

The IDs of the teams involved in the issue.

TYPE: list[int]

universes

The IDs of the universes related to the issue.

TYPE: list[int]

reprints

The IDs of the reprints of the issue.

TYPE: list[int]

cv_id

The Comic Vine ID of the issue.

TYPE: int

gcd_id

The Grand Comics Database ID of the issue.

TYPE: int

IssuePostResponse

Bases: IssuePost

A data model representing the response from creating an issue.

ATTRIBUTE DESCRIPTION
id

The ID of the issue.

TYPE: int

series

The ID of the series to which the issue belongs.

TYPE: int

number

The number of the issue.

TYPE: str

alt_number

The alternative number of the issue.

TYPE: str

title

The collection title of the issue.

TYPE: str

name

The story titles of the issue.

TYPE: list[str]

cover_date

The cover date of the issue.

TYPE: date

store_date

The store date of the issue.

TYPE: date

foc_date

The final order cutoff date of the issue.

TYPE: date

price

The price of the issue.

TYPE: Decimal

rating

The ID of the rating of the issue.

TYPE: int

sku

The SKU of the issue.

TYPE: str

isbn

The ISBN of the issue.

TYPE: str

upc

The UPC of the issue.

TYPE: str

page

The number of pages in the issue.

TYPE: int

desc

The description of the issue.

TYPE: str

image

The image URL of the issue.

TYPE: str

arcs

The IDs of the arcs associated with the issue.

TYPE: list[int]

characters

The IDs of the characters featured in the issue.

TYPE: list[int]

teams

The IDs of the teams involved in the issue.

TYPE: list[int]

universes

The IDs of the universes related to the issue.

TYPE: list[int]

reprints

The IDs of the reprints of the issue.

TYPE: list[int]

cv_id

The Comic Vine ID of the issue.

TYPE: int

gcd_id

The Grand Comics Database ID of the issue.

TYPE: int

resource_url

The URL of the issue resource.

TYPE: HttpUrl