Proxy & Data
Proxy API
Send write and search requests to a Blnk Core instance through Blnk Cloud.
POST
The Proxy API forwards HTTP requests to your Blnk Core instance through Blnk Cloud. Use it to create ledgers, balances, transactions, identities, and other Core resources without connecting to Core directly.
Blnk Cloud authenticates your request, routes it to the target instance using
instance_id, and returns the Core response unchanged. For a step-by-step walkthrough, see Making requests via the Cloud Proxy.Request structure
Bearer token for an API key or OAuth access token. Format:
Create credentials with proxy scopes in API keys or OAuth clients.
Bearer YOUR_API_KEY or Bearer YOUR_ACCESS_TOKEN. Credentials must include the appropriate proxy scope:| Scope | Access |
|---|---|
proxy:write | Create and update resources (POST, PUT, DELETE) |
proxy:read | Read resources (GET routes) |
Unique identifier of the Blnk Core instance to target. Required on every Proxy API request.
Required for requests with a body. Set to
application/json. Use multipart/form-data for reconciliation file uploads.Available endpoints
All paths are relative tohttps://api.cloud.blnkfinance.com/proxy. Append ?instance_id=YOUR_INSTANCE_ID to every request.
- Writes
- Reads
- Tokenization
- Reconciliation
| Method | Path | Description |
|---|---|---|
| POST | /ledgers | Create a ledger |
| POST | /balances | Create a balance |
| POST | /transactions | Create a transaction |
| POST | /transactions/bulk | Create multiple transactions |
| PUT | /transactions/inflight/:id | Update an inflight transaction |
| POST | /refund-transaction/:id | Refund a transaction |
| POST | /identities | Create an identity |
| PUT | /identities/:identity_id | Update an identity |
| PUT | /balances/:id/identity | Link an identity to a balance |
| POST | /:id/metadata | Update metadata on a ledger, balance, transaction, or identity |
When creating a transaction, Blnk Cloud automatically adds
precision: 100 and a reference value if they are omitted from the request body.