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

Optional case-insensitive name prefix to filter categories

Example:

"plumb"

Response

Successful Response

name
string
required
alias
string
required
@type
string
default:YellCategory
url
string | null