List follows
autoCopyStatus is off, active, paused_user, or paused_failures. The last one is set by us after repeated execution failures and is the one worth surfacing to a person.
Query parameters
No parameters.
Response
autoCopyConfig is undefined when the stored configuration no longer validates, which reads as autopilot being unconfigured rather than misconfigured.
curl "https://api.rivo.markets/v1/traders/following" \
-H "Authorization: Bearer rivo_live_..."import requests
r = requests.get(
"https://api.rivo.markets/v1/traders/following",
headers={"Authorization": "Bearer rivo_live_..."},
)
print(r.json()["data"])const res = await fetch("https://api.rivo.markets/v1/traders/following", {
headers: { Authorization: "Bearer rivo_live_..." },
});
const { data } = await res.json();response
{
"success": true,
"data": [
{
"platform": "polymarket",
"traderId": "0x9f2c...b7a4",
"displayName": "coldbrew",
"alertsEnabled": true,
"autoCopyStatus": "active",
"autoCopyConfig": {
"mode": "fixed",
"stakeUsd": 50,
"maxPerTradeUsd": 100,
"dailyCapUsd": 500,
"paper": true,
"mirrorExits": false
},
"createdAt": 1755071883000
}
]
}