GET /api/v1/user-activity
Returns raw wallet activity data from multiple exchanges by public wallet address.
This is also the REST substrate behind WebSocket wallet_activity subscriptions.
Parameters
Wallet address to query (e.g., 0x1234...abcd).
exchanges
string
default: "polymarket,opinion,limitless,predictfun"
Comma-separated list of exchanges to query.
Maximum activity items to return per exchange.
Response
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"
{
"exchanges" : {
"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" }
}
}