Comic Vine

Comics, characters and issue database

🎮 GamesUNMONITOREDchecked 57 min ago
AUTH APIKEYCORS AGENT ?HTTPS COMMERCIAL ?

Comic Vine API returns characters, issues, volumes and teams as JSON. Free API key after signup at comicvine.gamespot.com.

HOW IT'S SCORED ⓘ
Status badge · for your READMEshipapis health badge: — · unmonitored
Uptime history
—%90 days
—%30 days
P50 · ms
P95 · ms
operationalpartialdownno data
Live response samplecaptured by our last successful check
GET https://comicvine.gamespot.com/api/characters/?format=json&limit=1

{
  "error": "Invalid API Key",
  "limit": 0,
  "offset": 0,
  "number_of_page_results": 0,
  "number_of_total_results": 0,
  "status_code": 100,
  "results": []
}
Call itcurl · fetch · python
curl "https://comicvine.gamespot.com/api/characters/?format=json&limit=1"
const res = await fetch("https://comicvine.gamespot.com/api/characters/?format=json&limit=1");
const data = await res.json();
console.log(data);
import requests

res = requests.get("https://comicvine.gamespot.com/api/characters/?format=json&limit=1")
print(res.json())

BROWSER CALLS BLOCKED (NO CORS/HTTPS) — USE THE CURL SNIPPET

Endpoints · 3On scheduleFULL DOCS ↗
First rollup pending — GET /api/characters/?api_key=YOUR_API_KEY&format=json&limit=10 has been probed
GET/api/characters/?api_key=YOUR_API_KEY&format=json&limit=10PROBED

Paginated character list.

GET/api/issues/?api_key=YOUR_API_KEY&format=json&limit=10

Recent comic issues.

GET/api/search/?api_key=YOUR_API_KEY&format=json&query=batman&resources=character

Search characters by name.

Machine-readable spec

We probe a documented GET and expect 2xx JSON — full uptime and health score. Export includes every documented route below.

Response-shape history

Stable. No schema drift observed since monitoring began — the response shape has not changed under our checks.

Comic Vine: common questions

Is Comic Vine free to use?

Yes — Comic Vine is a free games API. Free tier: Free tier — API key required. Whether the free tier allows commercial use is unclear — check the provider docs.

Does Comic Vine need an API key?

Yes — Comic Vine needs a free API key, which you pass on each request. Rate limits: Unpublished.

Can I call Comic Vine from the browser?

Not directly — Comic Vine doesn't send browser-friendly CORS headers, so call it from a server or proxy instead. Copy the curl or Python snippet on this page to get started.

Is Comic Vine up right now?

As of our last scheduled check, Comic Vine is unmonitored. We re-probe it every sweep — the status badge and uptime chart above always show the latest.