search_castles
Search the atlas’s 2,400 castles, fortresses, palaces and ruins by name (accent- and case-insensitive substring match). Optionally filter by country (name or ISO code) and category. Results come best-match-first, then by fame; each has coordinates, founding century, fame rank and links to its atlas page and Wikipedia. If nothing matches, retry with a shorter fragment of the name.
Parameters4
| query | string | required | Name or part of a name, e.g. "neuschwanstein" or "himeji" |
| country | string | optional | Country name or 2-letter ISO code (optional) |
| category | string | optional | Landmark type (optional) |
| limit | integer | optional | Max results (default 10) |
Raw schema
{
"type": "object",
"properties": {
"query": {
"type": "string",
"description": "Name or part of a name, e.g. \"neuschwanstein\" or \"himeji\""
},
"country": {
"type": "string",
"description": "Country name or 2-letter ISO code (optional)"
},
"category": {
"type": "string",
"enum": [
"castle",
"fortress",
"palace",
"ruin"
],
"description": "Landmark type (optional)"
},
"limit": {
"type": "integer",
"minimum": 1,
"maximum": 50,
"description": "Max results (default 10)"
}
},
"required": [
"query"
]
}