Skip to main content
POST
/
api
/
openalex
/
funders
/openalex/funders
curl --request POST \
  --url https://api.anysite.io/api/openalex/funders \
  --header 'Content-Type: application/json' \
  --header 'access-token: <api-key>' \
  --data '
{
  "funder": "<string>",
  "timeout": 300
}
'
[
  {
    "id": "<string>",
    "@type": "@service__parsers__openalex__funders__funders__openalex_funder",
    "display_name": "",
    "alternate_titles": [],
    "country_code": "<string>",
    "description": "<string>",
    "homepage_url": "<string>",
    "image": "<string>",
    "awards_count": 123,
    "works_count": 0,
    "cited_by_count": 0,
    "summary_stats": {
      "@type": "@openalex_summary_stats",
      "two_year_mean_citedness": 123,
      "h_index": 123,
      "i10_index": 123
    },
    "ror": "<string>",
    "counts_by_year": [],
    "updated_at": "<string>",
    "created_at": "<string>"
  }
]

Authorizations

access-token
string
header
required

API token from the dashboard

Headers

access-token
string
required

Body

application/json
funder
string
required

OpenAlex funder id

Minimum string length: 1
Example:

"F4320332161"

timeout
integer
default:300

Max scrapping execution timeout (in seconds)

Required range: 20 <= x <= 1500

Response

Successful Response

id
string
required
@type
string
default:@service__parsers__openalex__funders__funders__openalex_funder
display_name
string
default:""
alternate_titles
string[]
country_code
string | null
description
string | null
homepage_url
string | null
image
string | null
awards_count
integer | null
works_count
integer
default:0
cited_by_count
integer
default:0
summary_stats
OpenalexSummaryStats · object
ror
string | null
counts_by_year
OpenalexCountByYear · object[]
updated_at
string | null
created_at
string | null