Skip to content

Item

BaseItem

Bases: BaseModel

Contains fields for all Items.

ATTRIBUTE DESCRIPTION
aliases

List of names used by the Item, collected in a string.

TYPE: str | None

api_url

Url to the resource in the Comicvine API.

TYPE: str

date_added

Date and time when the Item was added.

TYPE: datetime

date_last_updated

Date and time when the Item was last updated.

TYPE: datetime

description

Long description of the Item.

TYPE: str | None

first_issue

First issue the Item appeared in.

TYPE: IssueEntry | None

id

Identifier used by Comicvine.

TYPE: int

image

Different sized images, posters and thumbnails for the Item.

TYPE: Image

issue_count

Number of issues the Item appears in.

TYPE: int

name

Name/Title of the Item.

TYPE: str

site_url

Url to the resource in Comicvine.

TYPE: str

start_year

The year the Item first appeared.

TYPE: int | None

summary

Short description of the Item.

TYPE: str | None

Item

Bases: BaseItem

Extends BaseItem by including all the list references of a item.

ATTRIBUTE DESCRIPTION
issues

List of issues the Item appears in.

TYPE: list[GenericEntry]

story_arcs

List of story arcs the Item appears in.

TYPE: list[GenericEntry]

volumes

List of volumes the Item appears in.

TYPE: list[GenericEntry]

ItemEntry

Bases: BaseItem

Contains all the fields available when viewing a list of Items.