Skip to main content
POST
/
api
/
ebay
/
categories
/ebay/categories
curl --request POST \
  --url https://api.anysite.io/api/ebay/categories \
  --header 'Content-Type: application/json' \
  --header 'access-token: <api-key>' \
  --data '{
  "timeout": 300
}'
[
  {
    "id": "<string>",
    "@type": "@ebay_category",
    "name": "<string>",
    "alias": "<string>",
    "category_id": "<string>",
    "url": "<string>",
    "parent_id": "<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:@ebay_category
name
string | null
alias
string | null
category_id
string | null
url
string | null
parent_id
string | null