GnistAI GnistAI
Log in

Historical Figures

Curated database of notable historical figures — leaders, scientists, artists, philosophers, and explorers.

Overview   |   MCP   |   REST API   |   OpenAPI   |   CLI   |   Tutorial   |   Toolkits   |   Home
status: healthy status status healthy healthy tools: 6 tools tools 6 6 type: open dataset type type open dataset open dataset lifecycle: maintained lifecycle lifecycle maintained maintained Education

Data source: Curated dataset (Wikipedia, academic sources)

REST Bridge Endpoint https://context.gnist.ai/rest/historical-figures/
Authentication

All requests require a Gnist-API-Key header (or api_key query parameter).

Free tier: 100 calls/day. Get your API key.

Tools (6)

get_historical_figure

Get detailed information about a historical figure by ID.

Returns biographical data including birth/death years, nationality, field, era, and description.

ParameterTypeRequiredDescription
figure_idstringrequiredSlug ID of the historical figure (e.g. 'julius-caesar', 'albert-einstein').
Request Body
{
  "figure_id": "example"
}
search_historical_figures

Search historical figures by keyword.

Searches across names, achievements, and descriptions. Case-insensitive.

ParameterTypeRequiredDescription
querystringrequiredSearch keyword — matches name, known_for, or description.
limitanyoptionalMaximum number of results (default: 20, max: 100).
Request Body
{
  "query": "example"
}
list_figures_by_field

List historical figures by their field of achievement.

Valid fields include: Politics & Leadership, Science & Mathematics, Arts & Literature,
Philosophy, Military, Exploration, Religion, Activism, Business & Economics.

ParameterTypeRequiredDescription
fieldstringrequiredField of achievement (e.g. 'Science & Mathematics', 'Arts & Literature', 'Philosophy').
limitanyoptionalMaximum number of results (default: 50, max: 100).
Request Body
{
  "field": "example"
}
list_figures_by_era

List historical figures by historical era.

Valid eras: Ancient, Medieval, Renaissance, Early Modern, Modern, Contemporary.

ParameterTypeRequiredDescription
erastringrequiredHistorical era (e.g. 'Ancient', 'Medieval', 'Renaissance', 'Modern', 'Contemporary').
limitanyoptionalMaximum number of results (default: 50, max: 100).
Request Body
{
  "era": "example"
}
list_figures_by_nationality

List historical figures by nationality.

Partial matching — e.g. 'american' matches 'American', 'Serbian-American', etc.

ParameterTypeRequiredDescription
nationalitystringrequiredNationality to filter by (case-insensitive, partial match).
limitanyoptionalMaximum number of results (default: 50, max: 100).
Request Body
{
  "nationality": "example"
}
report_feedback

Report a bug, feature request, or general feedback for this data source.

Use this when something doesn't work as expected, when you'd like
a new feature, or when you have suggestions for improvement.

Args:
feedback: Describe the issue or suggestion.
feedback_type: One of 'bug', 'feature_request', or 'general'.

ParameterTypeRequiredDescription
feedbackstringrequired
feedback_typestringoptional (default: "general")
Request Body
{
  "feedback": "example"
}

Quick Start

Shell
curl -X POST "https://context.gnist.ai/rest/historical-figures/get_historical_figure" \
  -H "Content-Type: application/json" \
  -H "Gnist-API-Key: YOUR_API_KEY" \
  -d '{"figure_id": "example"}'
Python
import httpx

resp = httpx.post(
    "https://context.gnist.ai/rest/historical-figures/get_historical_figure",
    headers={"Gnist-API-Key": "YOUR_API_KEY"},
    json={
  "figure_id": "example"
},
)
print(resp.json())

Related Toolkits (Education)

Resources