Skip to main content
POST
/
api
/
getapp
/
categories
/getapp/categories
curl --request POST \
  --url https://api.anysite.io/api/getapp/categories \
  --header 'Content-Type: application/json' \
  --header 'access-token: <api-key>' \
  --data '
{
  "count": 2,
  "timeout": 300,
  "query": "crm"
}
'
[
  {
    "name": "<string>",
    "@type": "GetappCategory",
    "alias": "<string>",
    "group": "<string>",
    "group_slug": "<string>",
    "listing_count": 123,
    "url": "<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 categories to return

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

Max scrapping execution timeout (in seconds)

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

Optional case-insensitive filter on category name

Example:

"crm"

Response

Successful Response

name
string
required
@type
string
default:GetappCategory
alias
string | null
group
string | null
group_slug
string | null
listing_count
integer | null
url
string | null