Skip to main content
GET
/
v1
/
markets
/
{address}
/
trades
Error
A valid request URL is required to generate request examples
{
  "trades": [
    {
      "id": 0,
      "marketAddress": "<string>",
      "txId": "<string>",
      "buyOrderId": 0,
      "sellOrderId": 0,
      "fillType": "<string>",
      "outcome": "yes",
      "side": "<string>",
      "isBuy": true,
      "price": 500,
      "quantity": "<string>",
      "amountUsd": "<string>",
      "makerAddress": "<string>",
      "takerAddress": "<string>",
      "refererAddress": "<string>",
      "fillTimestamp": 0,
      "createdAt": "<string>"
    }
  ],
  "pagination": {
    "limit": 100,
    "nextCursor": "<string>",
    "page": 4503599627370495,
    "total": 4503599627370495
  }
}

Documentation Index

Fetch the complete documentation index at: https://aura-4ecab767.mintlify.app/llms.txt

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

Authorizations

Authorization
string
header
required

API key obtained from POST /v1/auth/keys.

Path Parameters

address
string
required

Alephium address (base58, optional :N group suffix).

Required string length: 30 - 80
Pattern: ^[123456789ABCDEFGHJKLMNPQRSTUVWXYZabcdefghijkmnopqrstuvwxyz:]+$

Query Parameters

limit
integer
default:50
Required range: 1 <= x <= 200
cursor
string
page
integer
Required range: 0 <= x <= 9007199254740991

Response

Default Response

trades
object[]
required
pagination
object
required

Pagination envelope returned alongside every list endpoint.