Read and query data from a Blnk Core instance via direct database access through Blnk Cloud.
curl -X GET 'https://api.cloud.blnkfinance.com/data/transactions?instance_id=YOUR_INSTANCE_ID&page=1&pageSize=20' \
-H 'Authorization: Bearer YOUR_ACCESS_TOKEN'
{
"data": [
{
"transaction_id": "txn_c4e70eb8-e4d6-4e04-a2e2-92a43b969e0c",
"amount": 100.50,
"currency": "USD",
"source": "bln_5ce86029-3c2e-4e2a-aae2-7fb931ca4c4f",
"destination": "bln_ANOTHER_BALANCE_ID",
"status": "APPLIED",
"created_at": "2024-11-26T08:40:00.000000000Z"
}
],
"total": 42
}
The Data API lets you read data stored in a Blnk Core instance through Blnk Cloud. Requests query the instance database directly and are commonly used for dashboards, analytics, reporting, and back-office operations.Documentation Index
Fetch the complete documentation index at: https://docs.blnkfinance.com/llms.txt
Use this file to discover all available pages before exploring further.
curl -X GET 'https://api.cloud.blnkfinance.com/data/transactions?instance_id=YOUR_INSTANCE_ID&page=1&pageSize=20' \
-H 'Authorization: Bearer YOUR_ACCESS_TOKEN'
data:read scope. Create credentials with the data:read scope in API keys or OAuth clients.30 for ledgers, 20 for balances, transactions, and identities.https://api.cloud.blnkfinance.com/data.
| Resource | Path |
|---|---|
| Ledgers | /ledgers |
| Balances | /balances |
| Transactions | /transactions |
| Identities | /identities |
| Reconciliations | /reconciliations |
| Matching rules | /matching-rules |
| External transactions | /external-transactions |
{
"data": [
{
"transaction_id": "txn_c4e70eb8-e4d6-4e04-a2e2-92a43b969e0c",
"amount": 100.50,
"currency": "USD",
"source": "bln_5ce86029-3c2e-4e2a-aae2-7fb931ca4c4f",
"destination": "bln_ANOTHER_BALANCE_ID",
"status": "APPLIED",
"created_at": "2024-11-26T08:40:00.000000000Z"
}
],
"total": 42
}
Was this page helpful?
curl -X GET 'https://api.cloud.blnkfinance.com/data/transactions?instance_id=YOUR_INSTANCE_ID&page=1&pageSize=20' \
-H 'Authorization: Bearer YOUR_ACCESS_TOKEN'
{
"data": [
{
"transaction_id": "txn_c4e70eb8-e4d6-4e04-a2e2-92a43b969e0c",
"amount": 100.50,
"currency": "USD",
"source": "bln_5ce86029-3c2e-4e2a-aae2-7fb931ca4c4f",
"destination": "bln_ANOTHER_BALANCE_ID",
"status": "APPLIED",
"created_at": "2024-11-26T08:40:00.000000000Z"
}
],
"total": 42
}