| Type | Endpoint Path Pattern | Request Body | Description |
|---|---|---|---|
| Single | */single* | Account or Position or Transaction Lookup | Fetches full details or certain subsets of data on a single blockchain entity |
| Bulk/Multiple | */bulk* | Items Query | Fetches a list of items that match the specified query criteria |
| Detail Level | Description | Examples |
|---|---|---|
| detailed | All available details are fetched | Account Detailed |
| compact | Identifiers and offchain metadata | Account Compact |
| identifiers | Identifiers only | Account Identifiers |
{
"limit": 20,
"skip": 40,
"filter": [
{
"fieldName": "comments",
"filterValues": [
{
"dataType": "TEXT",
"filterType": "CONTAINS",
"valueString": "Setup for test only"
}
]
},
{
"fieldName": "managed",
"filterValues": [
{
"dataType": "TEXT",
"filterType": "EQAULS",
"valueBoolean": true
}
]
},
{
"fieldName": "type",
"filterValues": [
{
"dataType": "OFFCHAIN_REFRENCE_TYPE",
"filterType": "IN",
"valuesString": [
"LOAN_ESCROW",
"LOAN_LENDER"
]
}
]
},
{
"fieldName": "lastTransactionAt",
"filterValues": [
{
"dataType": "TIMESTAMP",
"filterType": "IN_RANGE",
"valueFromString": "2025-01-01T00:00:00Z",
"valueToString": "2025-03-01T00:00:00Z"
}
]
}
],
"sort": [
{
"fieldName": "lastTransactionAt",
"sortDirection": "DESC"
}
]
}