The Shortboxed comics api is a simple and free api to help retrieve and query new comic book day data in json. All services provided are best effort. Feel free to let us know how you're using the api as we'd love to promote it.
Bugs or feature requests? Contact us at [email protected]
API Domain: api.shortboxed.com
GET /comics/v1/new
comics:
[
{
publisher: "MARVEL COMICS",
description: " Showdown on Wall Street!",
title: "CAPTAIN AMERICA SAM WILSON #6",
price: "$3.99",
creators: "(W) Nick Spencer (A) Joe Bennett (CA) Oscar Jimenez",
release_date: "2016-02-03",
diamond_id: "DEC150773"
},
{
publisher: "DC COMICS",
description: "Let the doctor make you strong, ",
title: "BATMAN BEYOND #9",
price: "$2.99",
creators: "(W) Dan Jurgens (A) Bernard Chang (CA) Philip Tan",
release_date: "2016-02-03",
diamond_id: "DEC150278"
},
...
]
GET /comics/v1/previous
comics:
[
{
publisher: "MARVEL COMICS",
description: " Showdown on Wall Street!",
title: "CAPTAIN AMERICA SAM WILSON #6",
price: "$3.99",
creators: "(W) Nick Spencer (A) Joe Bennett (CA) Oscar Jimenez",
release_date: "2016-02-03",
diamond_id: "DEC150773"
},
{
publisher: "DC COMICS",
description: "Let the doctor make you strong, ",
title: "BATMAN BEYOND #9",
price: "$2.99",
creators: "(W) Dan Jurgens (A) Bernard Chang (CA) Philip Tan",
release_date: "2016-02-03",
diamond_id: "DEC150278"
},
...
]
GET /comics/v1/future
comics:
[
{
publisher: "MARVEL COMICS",
description: " Showdown on Wall Street!",
title: "CAPTAIN AMERICA SAM WILSON #6",
price: "$3.99",
creators: "(W) Nick Spencer (A) Joe Bennett (CA) Oscar Jimenez",
release_date: "2016-02-03",
diamond_id: "DEC150773"
},
{
publisher: "DC COMICS",
description: "Let the doctor make you strong, ",
title: "BATMAN BEYOND #9",
price: "$2.99",
creators: "(W) Dan Jurgens (A) Bernard Chang (CA) Philip Tan",
release_date: "2016-02-03",
diamond_id: "DEC150278"
},
...
]
GET /comics/v1/query?release_date=2016-02-17&title=thor&publisher=marvel&creator=jason
comics:
[
{
publisher: "MARVEL COMICS",
description: "The path of the All-Mother and Asgard is torn apart by civil war...",
title: "MIGHTY THOR #4",
price: "$3.99",
creators: "(W) Jason Aaron (A/CA) Russell Dauterman",
release_date: "2016-02-17",
diamond_id: "DEC150774"
}
]
Name | Type | Description |
---|---|---|
release_date |
string |
(optional) A valid comic book release date can be provided in iso8601 format (ie: 2016-02-17). Defaults to most current release if undefined |
publisher |
string |
(optional) Any valid publisher |
title |
string |
(optional) Any comic book title |
creators |
string |
(optional) Any creator name |
GET /comics/v1/release_date/2016-02-17
comics:
[
{
publisher: "MARVEL COMICS",
description: "The path of the All-Mother and Asgard is torn apart by civil war...",
title: "MIGHTY THOR #4",
price: "$3.99",
creators: "(W) Jason Aaron (A/CA) Russell Dauterman",
release_date: "2016-02-17",
diamond_id: "DEC150774"
}
]
GET /comics/v1/releases/available
dates:
[
"2015-04-01",
"2016-01-20",
"2016-01-27",
"2016-02-03",
"2016-02-10",
"2016-02-17"
]
GET /comics/v1/diamond_id/DEC150774
comics:
[
{
publisher: "MARVEL COMICS",
description: "The path of the All-Mother and Asgard is torn apart by civil war...",
title: "MIGHTY THOR #4",
price: "$3.99",
creators: "(W) Jason Aaron (A/CA) Russell Dauterman",
release_date: "2016-02-17",
diamond_id: "DEC150774"
}
]