Skip to main content
POST
/
api
/
blibli
/
categories
/blibli/categories
curl --request POST \
  --url https://api.anysite.io/api/blibli/categories \
  --header 'Content-Type: application/json' \
  --header 'access-token: <api-key>' \
  --data '{
  "timeout": 300
}'
[
  {
    "id": "<string>",
    "@type": "@blibli_category",
    "name": "<string>",
    "alias": "<string>",
    "level": 123,
    "url": "<string>",
    "image": "<string>",
    "description": "<string>"
  }
]

Authorizations

access-token
string
header
required

API token from the dashboard

Headers

access-token
string
required

Body

application/json
timeout
integer
default:300

Max scrapping execution timeout (in seconds)

Required range: 20 <= x <= 1500

Response

Successful Response

id
string
required
@type
string
default:@blibli_category
name
string | null
alias
string | null
level
integer | null
url
string | null
image
string | null
description
string | null