Skip to main content
POST
/
api
/
datacite
/
providers
/
search
/datacite/providers/search
curl --request POST \
  --url https://api.anysite.io/api/datacite/providers/search \
  --header 'Content-Type: application/json' \
  --header 'access-token: <api-key>' \
  --data '
{
  "count": 2,
  "timeout": 300,
  "query": "<string>",
  "region": "<string>",
  "year": "<string>"
}
'
[
  {
    "id": "<string>",
    "@type": "@datacite_provider",
    "name": "<string>",
    "display_name": "<string>",
    "symbol": "<string>",
    "description": "<string>",
    "website": "<string>",
    "image": "<string>",
    "region": "<string>",
    "country": "<string>",
    "member_type": "<string>",
    "organization_type": "<string>",
    "focus_area": "<string>",
    "non_profit_status": "<string>",
    "ror_id": "<string>",
    "doi_estimate": 123,
    "is_active": true,
    "joined_at": "<string>",
    "created_at": "<string>",
    "updated_at": "<string>"
  }
]

Authorizations

access-token
string
header
required

API token from the dashboard

Headers

access-token
string
required

Body

application/json
count
integer
required

Number of providers to return

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

Max scrapping execution timeout (in seconds)

Required range: 20 <= x <= 1500
query
string | null

Free-text search across provider metadata

region
string | null

Filter by region code (e.g. AMER, EMEA, APAC)

year
string | null

Filter by membership year

Response

Successful Response

id
string
required
@type
string
default:@datacite_provider
name
string | null
display_name
string | null
symbol
string | null
description
string | null
website
string | null
image
string | null
region
string | null
country
string | null
member_type
string | null
organization_type
string | null
focus_area
string | null
non_profit_status
string | null
ror_id
string | null
doi_estimate
integer | null
is_active
boolean | null
joined_at
string | null
created_at
string | null
updated_at
string | null