Skip to main content
POST
/
api
/
flamp
/
rubrics
/flamp/rubrics
curl --request POST \
  --url https://api.anysite.io/api/flamp/rubrics \
  --header 'Content-Type: application/json' \
  --header 'access-token: <api-key>' \
  --data '
{
  "count": 2,
  "timeout": 300,
  "project": "moscow"
}
'
[
  {
    "id": "<string>",
    "name": "<string>",
    "@type": "@flamp_rubric",
    "alias": "<string>",
    "description": "<string>",
    "image": "<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 rubrics to return

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

Max scrapping execution timeout (in seconds)

Required range: 20 <= x <= 1500
project
string
default:moscow

Flamp city code (subdomain), e.g. moscow, spb

Example:

"moscow"

Response

Successful Response

id
string
required
name
string
required
@type
string
default:@flamp_rubric
alias
string | null
description
string | null
image
string | null