PotterDB
Harry Potter characters, spells and potions as JSON:API
PotterDB is an open database of the Harry Potter universe — characters, spells, potions, books and movies — served over a paginated JSON:API. Each character record carries house, species, blood status, wands and more. No key needed; page through with page[size] and page[number].
GET https://api.potterdb.com/v1/characters?page[size]=1
{
"data": [
{
"id": "6ce92f2b-2bca-49e6-a696-ddde6f555066",
"type": "character",
"attributes": {
"name": "1980s Hogwarts Gobstones Tournament champion",
"house": "Hufflepuff",
"species": "Human",
"gender": "Male",
"blood_status": "Pure-blood or half-blood"
}
}
]
}curl "https://api.potterdb.com/v1/characters?page[size]=1"const res = await fetch("https://api.potterdb.com/v1/characters?page[size]=1");
const data = await res.json();
console.log(data);import requests
res = requests.get("https://api.potterdb.com/v1/characters?page[size]=1")
print(res.json())/characters?page[size]=1PROBEDHarry Potter characters, spells and potions as JSON:API
/characters?limit=5Character listing.
/characters?page=1Character listing.
/v1/booksRetrieves a list of books
/v1/books/{id}Retrieves a book
/v1/books/{id}/chaptersRetrieves a list of chapters of a given book
We probe a documented GET and expect 2xx JSON — full uptime and health score. Export includes every documented route below.
Stable. No schema drift observed since monitoring began — the response shape has not changed under our checks.
PotterDB: common questions
Is PotterDB free to use?
Yes — PotterDB is a free games API. Free tier: Free — no key. Whether the free tier allows commercial use is unclear — check the provider docs.
Does PotterDB need an API key?
No — PotterDB needs no API key or signup. You can call it straight away; rate limits still apply (Unpublished).
Can I call PotterDB from the browser?
Yes — PotterDB returns CORS headers over HTTPS, so front-end code can fetch it directly with no backend proxy. Use the fetch snippet on this page, or hit "Run live" to try it now.
Is PotterDB up right now?
As of our last scheduled check, PotterDB is unmonitored. We re-probe it every sweep — the status badge and uptime chart above always show the latest.