Skip to main content
GET /api/v1/user-activity Returns raw user activity data from multiple exchanges by wallet address.

Parameters

address
string
required
Wallet address to query (e.g., 0x1234...abcd).
exchanges
string
default:"polymarket,opinion,limitless,predictfun"
Comma-separated list of exchanges to query.
limit
number
default:"100"
Maximum positions to return per exchange.

Response

success
boolean
Whether the request succeeded.
data
object
# All default exchanges
curl -H "X-API-Key: YOUR_API_KEY" \
  "https://api.parsecapi.com/api/v1/user-activity?address=0x1234567890abcdef"

# Specific exchanges
curl -H "X-API-Key: YOUR_API_KEY" \
  "https://api.parsecapi.com/api/v1/user-activity?address=0x1234567890abcdef&exchanges=polymarket,limitless"
{
  "success": true,
  "data": {
    "polymarket": {
      "positions": [],
      "value": {}
    },
    "limitless": {
      "positions": [],
      "traded-volume": {}
    },
    "status": {
      "polymarket": { "success": true },
      "opinion": { "success": false, "error": "OPINION_API_KEY not configured" },
      "limitless": { "success": true },
      "predictfun": { "success": false, "error": "PREDICTFUN_API_KEY not configured" }
    }
  }
}