GET /api/v1/user-activity
Returns raw user activity data from multiple exchanges by wallet address.
Parameters
Wallet address to query (e.g., 0x1234...abcd).
exchanges
string
default:"polymarket,opinion,limitless,predictfun"
Comma-separated list of exchanges to query.
Maximum positions to return per exchange.
Response
Whether the request succeeded.
Raw response from each queried exchange.
Per-exchange success/error status.
# 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" }
}
}
}