Get started
API Endpoint
https://api.westeros.com/
The Westeros API provides programmatic access to read Game of Thrones data. Retrieve a character, provide an oauth connexion, retrieve a familly, filter them, etc.
get characters
# Here is a curl example
curl \
-X POST http://api.westeros.com/character/get \
-F 'secret_key=your_api_key' \
-F 'house=Stark,Bolton' \
-F 'offset=0' \
-F 'limit=50'
To get characters you need to make a POST call to the following url :
Result example :
query:{
offset: 0,
limit: 50,
house: [
"Stark",
"Bolton"
],
}