Skip to main content
GET
/
smart_transfers
/
statistic
TypeScript
const response: Promise<FireblocksResponse<SmartTransferStatistic>> = fireblocks.smartTransfer.getSmartTransferStatistic();
{
  "inflow": {
    "coins": [
      {
        "asset": "BTC",
        "amount": 15
      }
    ],
    "ticketCount": 4
  },
  "outflow": {
    "coins": [
      {
        "asset": "BTC",
        "amount": 15
      }
    ],
    "ticketCount": 4
  },
  "totalActiveTickets": 5,
  "totalInactiveTickets": 5
}

Documentation Index

Fetch the complete documentation index at: https://developers.fireblocks.com/llms.txt

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

Response

Smart Transfer ticket statistic returned successfully

Smart transfers statistic

inflow
object
required

Inflow tickets data

outflow
object
required

Outflow tickets data

totalActiveTickets
integer
required

Number of total active tickets

Example:

5

totalInactiveTickets
integer
required

Number of total inactive tickets (expired, canceled, completed)

Example:

5