Skip to main content
GET
/
gateway
/
v1
/
prediction-market
/
polymarket
/
activity
Polymarket Wallet Activity
curl --request GET \
  --url https://api.ask.surf/gateway/v1/prediction-market/polymarket/activity
{
  "data": [
    {
      "condition_id": "<string>",
      "outcome": "<string>",
      "price": 123,
      "side": "<string>",
      "size": 123,
      "timestamp": 123,
      "title": "<string>",
      "transaction_hash": "<string>",
      "type": "<string>",
      "usdc_size": 123
    }
  ],
  "meta": {
    "cached": true,
    "credits_used": 123,
    "limit": 123,
    "offset": 123,
    "total": 123
  },
  "$schema": "<string>"
}

Query Parameters

address
string
required

Polymarket proxy wallet address

Example:

"0xd8dA6BF26964aF9D7eEd9e03E53415D37aA96045"

limit
integer<int64>
default:50

Results per page

Required range: 1 <= x <= 100
Example:

50

offset
integer<int64>
default:0

Pagination offset

Required range: x >= 0
Example:

0

Response

OK

data
object[] | null
required
meta
object
required
$schema
string<uri>

A URL to the JSON Schema for this object.

Example:

"https://example.com/schemas/DataResponsePolymarketActivity.json"