Skip to main content
POST
/
api
/
crossref
/
funders
/
search
/crossref/funders/search
curl --request POST \
  --url https://api.anysite.io/api/crossref/funders/search \
  --header 'Content-Type: application/json' \
  --header 'access-token: <api-key>' \
  --data '
{
  "query": "<string>",
  "count": 2,
  "timeout": 300
}
'
[
  {
    "id": "<string>",
    "@type": "@crossref_funder_entity",
    "name": "<string>",
    "alt_names": [],
    "location": "<string>",
    "uri": "<string>",
    "replaces": [],
    "replaced_by": [],
    "descendants": [],
    "work_count": 123,
    "descendant_work_count": 123
  }
]

Authorizations

access-token
string
header
required

API token from the dashboard

Headers

access-token
string
required

Body

application/json
query
string
required

Search query for funders

Minimum string length: 1
Examples:

"national science"

"wellcome"

count
integer
required

Number of funders to return

Required range: x >= 1
timeout
integer
default:300

Max scrapping execution timeout (in seconds)

Required range: 20 <= x <= 1500

Response

Successful Response

id
string
required
@type
string
default:@crossref_funder_entity
name
string | null
alt_names
string[]
location
string | null
uri
string | null
replaces
string[]
replaced_by
string[]
descendants
CrossrefFunderDescendant · object[]
work_count
integer | null
descendant_work_count
integer | null