Skip to main content
POST
/
api
/
openalex
/
concepts
/openalex/concepts
curl --request POST \
  --url https://api.anysite.io/api/openalex/concepts \
  --header 'Content-Type: application/json' \
  --header 'access-token: <api-key>' \
  --data '
{
  "concept": "<string>",
  "timeout": 300
}
'
[
  {
    "id": "<string>",
    "@type": "@openalex_concept_entity",
    "display_name": "",
    "level": 123,
    "description": "<string>",
    "wikidata": "<string>",
    "image": "<string>",
    "works_count": 0,
    "cited_by_count": 0,
    "works_api_url": "<string>",
    "updated_at": "<string>",
    "created_at": "<string>"
  }
]

Authorizations

access-token
string
header
required

API token from the dashboard

Headers

access-token
string
required

Body

application/json
concept
string
required

OpenAlex concept id

Minimum string length: 1
Example:

"C41008148"

timeout
integer
default:300

Max scrapping execution timeout (in seconds)

Required range: 20 <= x <= 1500

Response

Successful Response

id
string
required
@type
string
default:@openalex_concept_entity
display_name
string
default:""
level
integer | null
description
string | null
wikidata
string | null
image
string | null
works_count
integer
default:0
cited_by_count
integer
default:0
works_api_url
string | null
updated_at
string | null
created_at
string | null