Skip to main content
POST
/
api
/
datacite
/
clients
/
search
/datacite/clients/search
curl --request POST \
  --url https://api.anysite.io/api/datacite/clients/search \
  --header 'Content-Type: application/json' \
  --header 'access-token: <api-key>' \
  --data '
{
  "count": 2,
  "timeout": 300,
  "query": "<string>",
  "provider_id": "<string>",
  "year": "<string>"
}
'
[
  {
    "id": "<string>",
    "@type": "@datacite_client",
    "name": "<string>",
    "alternate_name": "<string>",
    "symbol": "<string>",
    "description": "<string>",
    "url": "<string>",
    "client_type": "<string>",
    "domains": "<string>",
    "re3data": "<string>",
    "opendoar": "<string>",
    "issn": {
      "@type": "@datacite_issn",
      "issnl": "<string>",
      "print": "<string>",
      "electronic": "<string>"
    },
    "languages": [],
    "year": 123,
    "is_active": true,
    "created_at": "<string>",
    "updated_at": "<string>",
    "provider_id": "<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 repositories 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 repository metadata

provider_id
string | null

Filter by owning provider id

year
string | null

Filter by year the repository joined

Response

Successful Response

id
string
required
@type
string
default:@datacite_client
name
string | null
alternate_name
string | null
symbol
string | null
description
string | null
url
string | null
client_type
string | null
domains
string | null
re3data
string | null
opendoar
string | null
issn
DataciteIssn · object
languages
string[]
year
integer | null
is_active
boolean | null
created_at
string | null
updated_at
string | null
provider_id
string | null