Skip to main content
POST
/
api
/
polymarket
/
tags
/polymarket/tags
curl --request POST \
  --url https://api.anysite.io/api/polymarket/tags \
  --header 'Content-Type: application/json' \
  --header 'access-token: <api-key>' \
  --data '
{
  "count": 2,
  "timeout": 300,
  "is_carousel": true
}
'
[
  {
    "id": "<string>",
    "label": "<string>",
    "@type": "@polymarket_tag",
    "alias": "<string>",
    "force_show": true,
    "force_hide": true,
    "is_carousel": true,
    "requires_translation": true,
    "published_at": "<string>",
    "created_at": "<string>",
    "updated_at": "<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 tags to return

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

Max scrapping execution timeout (in seconds)

Required range: 20 <= x <= 1500

Return only tags featured in the homepage carousel

Response

Successful Response

id
string
required
label
string
required
@type
string
default:@polymarket_tag
alias
string | null
force_show
boolean | null
force_hide
boolean | null
requires_translation
boolean | null
published_at
string | null
created_at
string | null
updated_at
string | null