data + meta envelope; meta.source identifies the upstream on every call.| API Reference category | Endpoints | Coverage |
|---|---|---|
| Research | 34 | The core /api/v1/research surface: arXiv preprint search, papers and categories (7), Crossref works, journals, funders, references and citations (10), NBER working papers and US recession dates (2), Maddison Project long-run GDP and population (7), Penn World Table growth and productivity panel (8) |
| Health | 10 | WHO Global Health Observatory: indicator catalog, country data with sex, age and region filters, latest values and country rankings |
GET /api/v1/research/arxiv/search runs a fielded search across arXiv preprints. Filter with q, cat, author, title or a from_date/to_date window.{
"data": {
"query": "all:\"agentic reasoning\"",
"papers": [
{
"arxiv_id": "2601.12538",
"title": "Agentic Reasoning for Large Language Models",
"primary_category": "cs.AI",
"published": "2026-01-18T18:58:23Z",
"urls": {"pdf": "https://arxiv.org/pdf/2601.12538v1"}
}
],
"pagination": {"total_results": 674, "limit": 1}
},
"meta": {"endpoint": "/api/v1/research/arxiv/search", "source": "arxiv"}
}/api/v1/research/arxiv/latest returns recent papers in a category, and /api/v1/research/arxiv/paper/{arxiv_id} fetches one paper by identifier.GET /api/v1/research/crossref/works/{doi} resolves any DOI to full scholarly metadata: title, venue, authors, license and citation counts.{
"data": {
"work": {
"DOI": "10.1038/s41586-021-03819-2",
"type": "journal-article",
"title": ["Highly accurate protein structure prediction with AlphaFold"],
"container-title": ["Nature"],
"published-print": {"date-parts": [[2021, 8, 26]]},
"reference-count": 84,
"is-referenced-by-count": 43030,
"author": [{"given": "John", "family": "Jumper", "sequence": "first"}]
}
},
"meta": {"source": "crossref"}
}/references/{doi} lists the works a DOI cites and /citations/{doi} the works citing it, which is enough to walk a citation graph.GET /api/v1/research/maddison/country/{iso3} returns GDP per capita and population for one country across the full Maddison Project range - for Japan, 776 observations from year 1 to 2022.{
"data": {
"iso3": "JPN",
"country": "Japan",
"count": 776,
"observations": [
{"year": 1, "gdppc": null, "pop": 3000.0},
{"year": 2022, "gdppc": 38268.788301490815, "pop": 124762.11}
]
},
"meta": {"source": "maddison"}
}/world, /regional and /top aggregate the same panel; /definitions carries methodology and the citation policy.GET /api/v1/research/pwt/top ranks countries by any Penn World Table variable for a year. The same panel backs /country/{iso3}, /compare, /world and the /tfp-panel productivity series.{
"data": {
"version": "pwt1100",
"variable": "rgdpo",
"description": "Output-side real GDP at chained PPPs (in mil. 2021US$)",
"year": 2019,
"ranking": [
{"rank": 1, "countrycode": "CHN", "country": "China", "value": 25585278.0},
{"rank": 2, "countrycode": "USA", "country": "United States", "value": 22896074.0},
{"rank": 3, "countrycode": "IND", "country": "India", "value": 10489483.0}
],
"attribution": "Penn World Table (Feenstra, Inklaar & Timmer, University of Groningen, CC BY 4.0)."
},
"meta": {"endpoint": "/api/v1/research/pwt/top", "source": "pwt"}
}meta.source and the per-dataset attribution field instead of relying on model memory.