Skip to main content
GET
/
v1
/
accounts
/
{account_id}
/
participation
Get Market Participation
curl --request GET \
  --url https://api.predictamarkets.com/v1/accounts/{account_id}/participation \
  --header 'X-Api-Key: <api-key>'
{
  "markets": [
    {
      "market_id": 12,
      "title": "Will Bitcoin hit $100k before July 2025?",
      "status": "OPEN",
      "portfolio_status": "OPEN",
      "total_invested": "650.00",
      "current_value": "700.00"
    }
  ],
  "total": 1
}

Documentation Index

Fetch the complete documentation index at: https://docs.predictamarkets.com/llms.txt

Use this file to discover all available pages before exploring further.

Authorizations

X-Api-Key
string
header
default:your-api-key-here
required

Path Parameters

account_id
required

Flexible identifier type that accepts either a numeric integer ID or a human-readable qualified ID string (QID). QIDs follow a prefix convention: MA for markets, MAA for market assets, AP for account payouts. Most path parameters that accept an ID use this type so callers can use whichever form is more convenient.

Query Parameters

status
string

Filter by portfolio status: OPEN, CLOSED, or LOSS Filter by portfolio status (OPEN, CLOSED, LOSS)

limit
integer
default:50

Maximum number of markets to return

skip
integer
default:0

Number of markets to skip

Response

Market participation

The response is of type Response Get Account Participation · object.