Groups
A group is a trading circle. You’re a member of zero or more groups, each identified by auniqueId. Groups are PUBLIC (anyone can join instantly) or PRIVATE (join by request or invite).
Members have a memberType of MEMBER, LEADER, or the creator who is an admin.
GET /api/v1/groups lists the groups you belong to. There is deliberately no endpoint to
discover other people’s groups — private group internals stay private, and every per-group read is
gated to members (you’ll get 403 NOT_GROUP_MEMBER otherwise). See the Groups guide
to create, join, and run them.
Proposals
A proposal is a trade idea inside a group, in one of three flavors:Spot
A token a leader is buying. Members can buy in, sell out, and the creator can close it.
Prediction
A YES/NO position on a Polymarket event. Members can predict, sell, and claim winnings.
Perp
A leveraged LONG/SHORT idea on Phoenix RISE. Members can join (increase) and reduce/close.
participantCount and participantAvatars show who’s in.
Positions
A position is your stake in a proposal. The trading guides cover the lifecycle per vertical:- Spot: open / buy / sell / close
- Predictions: propose / predict / sell / claim
- Perps: open / increase / reduce / close / claim
GET /api/v1/positions— open positions (perps + spot + predictions)GET /api/v1/positions/past— closed/resolved positionsGET /api/v1/trades— executed trade history (spot + predictions)
Response envelopes
Every response is wrapped in adata envelope. The shape inside data depends on the endpoint: