Skip to main content
The /funders endpoints expose Hexagraph’s index of research funding agencies — including government bodies, private foundations, and international research councils. Funder records include DOI identifiers (where registered) for cross-referencing with other scholarly infrastructure. Funders are identified by the OA:F prefix system.

List funders

Search for funders by name. Partial matches are supported (e.g. NIH matches “National Institutes of Health”).
filter
string
Narrow results with key-value filters. Multiple filters may be combined with a comma.
page
integer
default:"1"
Page number for paginated results. Starts at 1.
per_page
integer
default:"25"
Number of results returned per page. Maximum value is 200.
curl "https://hexagraph-core.onrender.com/funders?search=NIH"
[
  {
    "id": "OA:F4320306076",
    "name": "National Institutes of Health",
    "doi": "10.13039/100000002"
  },
  {
    "id": "OA:F4320332161",
    "name": "NIH National Cancer Institute",
    "doi": "10.13039/100000054"
  }
]

Get a single funder

Fetch a specific funding agency by its OA:F identifier.
curl "https://hexagraph-core.onrender.com/funders/OA:F4320306076"
{
  "id": "OA:F4320306076",
  "name": "National Institutes of Health",
  "doi": "10.13039/100000002"
}

Response fields

id
string
required
Unique identifier for the funder. Always prefixed with OA:F (e.g. OA:F4320306076).
name
string
required
Full display name of the funding agency (e.g. "National Institutes of Health").
doi
string
The Crossref Funder Registry DOI for this agency (e.g. "10.13039/100000002"). May be null if no DOI is registered in Hexagraph’s index.

Related endpoints: funder relationships appear on Outputs that acknowledge grant support.