Skip to main content
POST
/
api
/
datacite
/
providers
/datacite/providers
curl --request POST \
  --url https://api.anysite.io/api/datacite/providers \
  --header 'Content-Type: application/json' \
  --header 'access-token: <api-key>' \
  --data '
{
  "provider": "<string>",
  "timeout": 300
}
'
[
  {
    "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
provider
string
required

Provider (DataCite member) id

Minimum string length: 1
Examples:

"dryad"

"cern"

"tib"

timeout
integer
default:300

Max scrapping execution timeout (in seconds)

Required range: 20 <= x <= 1500

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