Skip to main content
POST
/
api
/
worldbank
/
topics
/worldbank/topics
curl --request POST \
  --url https://api.anysite.io/api/worldbank/topics \
  --header 'Content-Type: application/json' \
  --header 'access-token: <api-key>' \
  --data '
{
  "count": 2,
  "timeout": 300,
  "keyword": "health"
}
'
[
  {
    "id": "<string>",
    "@type": "@worldbank_topic",
    "name": "<string>",
    "source_note": "<string>"
  }
]

Authorizations

access-token
string
header
required

API token from the dashboard

Headers

access-token
string
required

Body

application/json
count
integer
required

Max number of topics to return

Required range: x >= 1
timeout
integer
default:300

Max scrapping execution timeout (in seconds)

Required range: 20 <= x <= 1500
keyword
string | null

Filter topics whose name contains this text

Example:

"health"

Response

Successful Response

id
string
required
@type
string
default:@worldbank_topic
name
string | null
source_note
string | null