Skip to main content
GET
/
reports
/
{id}
/
details
Get computed report detail rows
curl --request GET \
  --url https://api.breezing.io/v1/reports/{id}/details
{
  "success": true,
  "data": [
    null
  ],
  "status": "<string>"
}

Documentation Index

Fetch the complete documentation index at: https://learn.breezing.io/llms.txt

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

Path Parameters

id
string
required

Report ID

Example:

"1"

Query Parameters

org_id
string
required

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

Example:

"1"

company_id
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 May 3, 2026