Skip to main content
POST
/
api
/
polymarket
/
events
/
comments
/polymarket/events/comments
curl --request POST \
  --url https://api.anysite.io/api/polymarket/events/comments \
  --header 'Content-Type: application/json' \
  --header 'access-token: <api-key>' \
  --data '
{
  "event": "<string>",
  "count": 2,
  "timeout": 300
}
'
[
  {
    "id": "<string>",
    "text": "<string>",
    "@type": "@polymarket_comment",
    "parent_comment_id": "<string>",
    "user_address": "<string>",
    "reply_address": "<string>",
    "profile": {
      "@type": "@polymarket_comment_profile",
      "name": "<string>",
      "pseudonym": "<string>",
      "bio": "<string>",
      "image": "<string>",
      "proxy_wallet": "<string>",
      "base_address": "<string>",
      "display_username_public": true
    },
    "reactions": [],
    "reaction_count": 123,
    "report_count": 123,
    "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
event
string
required

Event id (numeric) or slug

Minimum string length: 1
Examples:

"30615"

"world-cup-winner"

count
integer
required

Max number of results

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

Max scrapping execution timeout (in seconds)

Required range: 20 <= x <= 1500

Response

Successful Response

id
string
required
text
string
required
@type
string
default:@polymarket_comment
parent_comment_id
string | null
user_address
string | null
reply_address
string | null
profile
PolymarketCommentProfile · object
reactions
PolymarketCommentReaction · object[]
reaction_count
integer | null
report_count
integer | null
created_at
string | null
updated_at
string | null