Skip to main content

Documentation Index

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

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

Returns the authenticated user’s on-chain financial transaction history (prediction votes, refunds, rewards, commissions).

Parameters

NameTypeHeaderRequiredDescription
AuthorizationstringAuthorizationyesAuthorization Bearer token
X-API-KeystringX-API-KeyyesProject API key

Responses

Response content type: application / json .

Code 200

List of financial transactions.
[
  {
    "amount": 0,
    "date": "string",
    "tx_hash": "string",
    "tx_type": 0
  }
]

Code 401

Unauthorized.
{
  "message": "string",
  "status": 0
}

Code 500

Internal server error.
{
  "message": "string",
  "status": 0
}