Skip to main content
GET
Get computed report detail rows

Path Parameters

id
string
required

Report ID

Example:

"1"

Query Parameters

orgId
string
required

Organization ID. Use GET /v1/companies to discover available org/company pairs.

Example:

"1"

companyId
string
required

Company ID. Use GET /v1/companies to discover available companies and their access levels.

Example:

"1"

type
enum<string>
default:token

Which detail kind to fetch. Should match the report's own type field. Default "token".

Available options:
token,
account,
explorerBalances
per_wallet
enum<string>

When true, returns rows grouped per wallet with the wallet name and a roll-up summary. Applies to type=token (sums realizedNet/unrealizedNet/fiat fields per wallet) and type=explorerBalances (groups raw rows per wallet). Ignored for type=account (always flat). Default false.

Available options:
true,
false

Response

Report details retrieved successfully

success
enum<boolean>
required
Available options:
true
data
null[]
required

Report detail rows. Shape varies by type: token rows have token/walletId/openingBalance/closingBalance/realizedNet/...; account rows have account/openingBalanceDebit/openingBalanceCredit/debit/credit; explorerBalances rows have token/walletId/currentBalance/explorerBalance/chain.

status
string

Reflects the parent report's current status. If "pending"/"progress", the data array may be empty, so keep polling.

Last modified on July 10, 2026