Skip to main content
POST
/
api
/
openalex
/
topics
/openalex/topics
curl --request POST \
  --url https://api.anysite.io/api/openalex/topics \
  --header 'Content-Type: application/json' \
  --header 'access-token: <api-key>' \
  --data '
{
  "topic": "<string>",
  "timeout": 300
}
'
[
  {
    "id": "<string>",
    "@type": "@openalex_topic_entity",
    "display_name": "",
    "description": "<string>",
    "keywords": [],
    "subfield": "<string>",
    "field": "<string>",
    "domain": "<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
topic
string
required

OpenAlex topic id

Minimum string length: 1
Example:

"T11636"

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_topic_entity
display_name
string
default:""
description
string | null
keywords
string[]
subfield
string | null
field
string | null
domain
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