ThronesApi API
Overview
ThronesApi offers data on Game of Thrones characters including names, images, family houses, and titles. No API key is required, making it a great choice for beginners who want to practice working with REST APIs. You can fetch a list of all characters or look up a specific character by ID.
Beginner Tip
This API requires no authentication, so you can test it directly in your browser or with curl. Try fetching all characters at /api/v2/Characters and then access a single character using its id.
Available Data
Example Response
{
"id": 1,
"name": "Thrones",
"data": "Game Of Thrones Characters Data with imagery",
"source": "ThronesApi"
} Field Reference
id Unique numeric ID for the character. firstName Character first name. lastName Character last name or family name. fullName Complete name of the character. title In-world title or role, such as King, Queen, or Maester. imageUrl URL pointing to an image of the character. Implementation Example
const url = "https://thronesapi.com/";
const response = await fetch(url);
if (!response.ok) throw new Error(`Request failed: ${response.status}`);
const data = await response.json();
console.log(data); What Can You Build?
Note: These code examples are AI-generated and unverified. Always refer to the official API documentation for accurate usage.
Common Errors & Troubleshooting
Matrix Score Breakdown
Fully tested on Apr 5, 2026
Technical Specifications
Related Tags
Similar APIs
View All →An API of Ice And Fire
⭐ Beginner's PickAn API of Ice and Fire is a free, open REST API providing comprehensive data from the Game of Thrones universe, including characters, houses, and books from George R.R.
Bob's Burgers
⚠ UnavailableBob's Burgers provides programmatic access to bob's burgers api via REST API.
Breaking Bad
⚠ UnavailableBreaking Bad provides programmatic access to breaking bad api via REST API.
Breaking Bad Quotes
⭐ Beginner's PickBreaking Bad Quotes is a tiny, free API that returns random quotes from the Breaking Bad TV series.
Catalogopolis
⚠ UnavailableCatalogopolis provides programmatic access to doctor who api via REST API.