Skip to main content
POST
/
api
/
core
/
data-providers
/core/data-providers
curl --request POST \
  --url https://api.anysite.io/api/core/data-providers \
  --header 'Content-Type: application/json' \
  --header 'access-token: <api-key>' \
  --data '
{
  "data_provider": "<string>",
  "timeout": 300
}
'
[
  {
    "id": 123,
    "url": "<string>",
    "@type": "@core_data_provider",
    "name": "<string>",
    "institution_name": "<string>",
    "email": "<string>",
    "homepage_url": "<string>",
    "oai_pmh_url": "<string>",
    "software": "<string>",
    "metadata_format": "<string>",
    "source": "<string>",
    "type": "<string>",
    "ror_id": "<string>",
    "open_doar_id": 123,
    "image": "<string>",
    "aliases": [],
    "location": {
      "@type": "@core_data_provider_location",
      "country_code": "<string>",
      "latitude": 123,
      "longitude": 123
    },
    "created_at": "<string>"
  }
]

Authorizations

access-token
string
header
required

API token from the dashboard

Headers

access-token
string
required

Body

application/json
data_provider
string
required

CORE data provider (repository) ID or URL

Minimum string length: 1
Examples:

"86"

"https://core.ac.uk/data-providers/86"

timeout
integer
default:300

Max scrapping execution timeout (in seconds)

Required range: 20 <= x <= 1500

Response

Successful Response

id
integer
required
url
string
required
@type
string
default:@core_data_provider
name
string | null
institution_name
string | null
email
string | null
homepage_url
string | null
oai_pmh_url
string | null
software
string | null
metadata_format
string | null
source
string | null
type
string | null
ror_id
string | null
open_doar_id
integer | null
image
string | null
aliases
string[]
location
CoreDataProviderLocation · object
created_at
string | null