API · /gameofthrones-api

Game of Thrones API

healthy 4,908 Subscribers

The world of A Song of Ice and Fire — the books behind Game of Thrones — as an API. Look up any character (e.g. Jon Snow → culture Northmen, titles, aliases like "Lord Snow", and his house allegiances), the great and minor houses (e.g. House Targaryen → region The Crownlands, words "Fire and Blood", seats and 100+ sworn members), and the novels (e.g. A Game of Thrones → 694 pages, 434 characters, ISBN, publisher and release date). Search and filter characters by name, culture and gender, houses by name, region and words, and books by name, with paging — and follow the cross-references (parents, spouse, allegiances, books) by id. Backed by the open anapioficeandfire.com dataset. Ideal for fan sites, trivia and quiz games, Discord bots and any Westeros app.

api.oanor.com/gameofthrones-api
Get an API key Try in playground → Contact provider

Machine-readable spec so AI agents can integrate this API.

/api/gameofthrones-api/openapi.json
/api/gameofthrones-api/llms.txt

Discovery: GET /api/index.json lists every API.

API health

healthy
Uptime
100.00%
Server probes · 24h
Avg latency
657 ms
Server probes · 24h
Subscribers
4,908
active
Total calls
16
last 7 days
status Full status page → · 16 probes/24h

Pricing

Pick a tier — billed monthly, cancel anytime.

Free

Free

  • 9,500 calls / month
  • 2 requests / second
  • Hard cap (429 above quota, no overage)
  • 9,500 calls/month
  • 2 req/sec
  • Characters, houses & books
  • No credit card
Sign in to subscribe

Starter

€3.20 /month

  • 135,000 calls / month
  • 8 requests / second
  • Hard cap (429 above quota, no overage)
  • 135k calls/month
  • 8 req/sec
  • Filtered search & paging
  • Email support
Sign in to subscribe

Pro

€10.20 /month

  • 660,000 calls / month
  • 20 requests / second
  • Hard cap (429 above quota, no overage)
  • 660k calls/month
  • 20 req/sec
  • Fan sites & trivia games
  • Priority support
Sign in to subscribe

Mega

€31.60 /month

  • 2,750,000 calls / month
  • 50 requests / second
  • Hard cap (429 above quota, no overage)
  • 2.75M calls/month
  • 50 req/sec
  • Bots & high-traffic apps
  • Dedicated SLA
Sign in to subscribe

Built by

Related APIs

Other APIs with overlapping tags.

Internet Archive API

The Internet Archive as an API — the non-profit digital library of over 40 million freely accessible items: books and texts, audio and live-music concerts, films and video, software, images and archived web pages. Search the entire archive by keyword with full Lucene field syntax (by creator, title, subject, collection and more), filter by media type (texts, audio, movies, image, software, web, live concerts) and sort by downloads, date or trending popularity, getting each item's identifier, title, creator, media type, year, download count and collections; read an item's full metadata including its description, creators, subjects, language, collections, publisher, license, dates and total size; list an item's downloadable files with their format, size, length and a direct download URL; and look up the closest Wayback Machine snapshot of any web page — the archived flag, the snapshot date and HTTP status, and the web.archive.org link, optionally near a target timestamp. Ideal for research, digital preservation, media discovery, dataset building, link-rot recovery and apps that surface public-domain and openly-licensed culture. Data from the Internet Archive (archive.org).

api.oanor.com/archive-api

Harry Potter API

The Wizarding World of Harry Potter as an API, powered by the open PotterDB. Search hundreds of characters by name and Hogwarts house (e.g. Harry Potter → Gryffindor, Stag patronus, half-blood, with species, wand, family and titles), browse the spell book (incantations, effects, light colour and casting hand — e.g. the Patronus Charm "Expecto Patronum"), the seven novels (author, pages, release date, dedication and summary), and the potions (ingredients, effect, difficulty and side-effects — e.g. Polyjuice Potion). Filter and paginate, or fetch any item by its slug. Ideal for fan sites, trivia and quiz games, Sorting-Hat and house apps, Discord bots and any Harry Potter project.

api.oanor.com/harrypotter-api

Books API

Search millions of books, look up editions by ISBN-10/13 and find authors — with covers, publish years, publishers, page counts and subjects. Powered by Open Library (Internet Archive).

api.oanor.com/books-api

Star Trek API

The Star Trek universe as an API, powered by the open STAPI database. Search characters by name (e.g. Picard) or pull full detail by uid — species, titles, occupations, the actors who played them and their Starfleet organizations. Look up the television series (e.g. Voyager → 7 seasons, episode count, production years and original broadcaster), and search the spacecraft of the franchise (e.g. Enterprise) for their registry, class, status and operator. Across The Original Series, The Next Generation, Deep Space Nine, Voyager and beyond. Ideal for fan sites, trivia and quiz games, wikis, Discord bots and any Star Trek app.

api.oanor.com/startrek-api

Frequently asked questions

Quick answers about pricing, quotas, and integration.

How do I get an API key for Game of Thrones API?
Sign up for free at oanor.com, generate an API key from the developer dashboard, and call Game of Thrones API with the x-oanor-key header. No credit card needed for the free tier.
What's the rate limit for Game of Thrones API?
Free tier allows 1 request per second. Paid plans scale up to 50 requests per second on the Mega tier. Hard limits return HTTP 429 above the quota — no surprise overage charges.
How much does Game of Thrones API cost?
Game of Thrones API has a free tier with 100 calls / month. Paid plans start at €3.20 / month with higher quotas and faster rate limits.
Can I cancel my subscription anytime?
Yes. Plans are billed monthly and you can cancel anytime from your billing dashboard. No long-term contracts and no cancellation fee.
Is Game of Thrones API GDPR-compliant?
All requests to Game of Thrones API go through our EU-based gateway. Your upstream API key never leaves our server and no personal data is shared with the upstream provider beyond the request you send.

Pick an endpoint from the list on the left to see its details and try it.

Code snippets

Sign up to get an API key, then call any path under your slug.

curl https://api.oanor.com/gameofthrones-api/SOME_PATH \
  -H "x-oanor-key: oanor_test_..."
const res = await fetch("https://api.oanor.com/gameofthrones-api/SOME_PATH", {
  headers: { "x-oanor-key": "oanor_test_..." }
});
const data = await res.json();
$ch = curl_init("https://api.oanor.com/gameofthrones-api/SOME_PATH");
curl_setopt($ch, CURLOPT_RETURNTRANSFER, true);
curl_setopt($ch, CURLOPT_HTTPHEADER, ["x-oanor-key: oanor_test_..."]);
$response = curl_exec($ch);
import requests
r = requests.get(
    "https://api.oanor.com/gameofthrones-api/SOME_PATH",
    headers={"x-oanor-key": "oanor_test_..."},
)
print(r.json())

Ratings

Sign in to rate.

No reviews yet.

Discussion

Ask questions, share usage tips, get answers from the provider and other developers. Public — anyone can read.

Sign in to start a thread or reply.

Sign in

New thread

/ 4000

📌 Pinned 🔒 Locked

·

· ·

/ 4000

🔒 This thread is locked — no new replies.

  • No threads yet — start the discussion.

Support

Private 1:1 support with the provider — billing questions, integration issues, account problems. Only you and the provider team can see these threads.

Sign in to open a support ticket.

Sign in

Open new ticket

Describe what you need help with. The provider team gets an email and replies on the ticket page.

  • No tickets yet for this API.

Subscription active — calls can start immediately.

Send your first request —

Subscription active — copy a snippet and fire off your first call.