Skip to main content
GET
/
api
/
v1
/
wallet
/
rounds
List round participations
curl --request GET \
  --url https://api.example.com/api/v1/wallet/rounds
[
  {
    "funding_txid": "<string>",
    "id": 1,
    "participation": {
      "inputs": [
        "<string>"
      ],
      "outputs": [
        {
          "amount_sat": 1,
          "policy_type": "<string>",
          "user_pubkey": "<string>"
        }
      ]
    },
    "status": {
      "error": "<string>",
      "status": "sync-error"
    },
    "unlock_hash": "<string>",
    "funding_tx_hex": "<string>"
  }
]

Response

Returns the wallet pending rounds

funding_txid
string | null
required

The round transaction id, if already assigned

id
integer<int32>
required

Unique identifier for the round

Required range: x >= 0
participation
object
required

the round participation details

status
object
required

the current status of the round

unlock_hash
string | null
required
funding_tx_hex
string | null