AZA Finance dlocal balance API

The dlocal balance API from AZA Finance — 1 operation(s) for dlocal balance.

Work with this as data

Every API here is available over the APIs.io API and to AI agents over MCP.

MCP server

One button, every client — Claude, Cursor, VS Code and the rest.

https://apis.io/mcp

Tools for apis

7 MCP tools reach this
  • find_apisBrowse and filter every API in the catalog.
  • get_api_artifactsOne API's artifacts, grouped by type.
  • get_openapiThe primary OpenAPI for this API.
  • find_similar_apisAPIs that look like this one.
  • apis_io_searchSTART HERE — APIs, providers and tags for one query, each with its total.
  • resolveTurn a domain, URL or GitHub org into the provider it belongs to.
  • find_cohortsEvery scored population of providers in the catalog.
All 92 tools

Call it yourself

curl for this page
This API
curl "https://apis.io/api/v1/apis/aza-finance-dlocal-balance-api"
All apis
curl "https://apis.io/api/v1/apis?limit=25"

Discovery needs no key. Ratings and market analysis are Pro.

Get an API key

Free tier, no email required.

A second provider on the same verified email joins the account you already have.

OpenAPI Specification

aza-finance-dlocal-balance-api-openapi.yml Raw ↑
openapi: 3.0.2
info:
  title: TransferZero Account Debits dlocal balance API
  description: Reference documentation for the TransferZero API V1
  version: '1.0'
servers:
- url: https://api-sandbox.transferzero.com/v1
- url: https://api.transferzero.com/v1
security:
- AuthorizationKey: []
  AuthorizationNonce: []
  AuthorizationSignature: []
- AuthorizationKey: []
  AuthorizationSecret: []
tags:
- name: dlocal balance
paths:
  /dlocal/balance:
    get:
      tags:
      - dlocal balance
      summary: Get dlocal balances
      description: This endpoint retrieves dlocal account balances
      operationId: get-balance
      responses:
        '200':
          description: Array of balances
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/DlocalBalanceResponse'
        '401':
          description: Authentication information is missing or invalid.
        '500':
          description: Internal Server Error.
components:
  schemas:
    DlocalBalanceResponse:
      type: object
      properties:
        object:
          type: array
          readOnly: true
          items:
            $ref: '#/components/schemas/DlocalBalance'
      readOnly: true
      example:
        object:
        - current_balance_date: '2026-02-24'
          currency: USD
          available_balance: 1000
          previous_day_closing_balance: 1000
        - current_balance_date: '2026-02-24'
          currency: USD
          available_balance: 1000
          previous_day_closing_balance: 1000
    DlocalBalance:
      properties:
        currency:
          type: string
          description: The currency of this balance
          readOnly: true
          example: USD
        available_balance:
          type: number
          description: The available balance for the given currency
          readOnly: true
          example: 1000
        previous_day_closing_balance:
          type: number
          description: The balance at end of previous day
          readOnly: true
          example: 1000
        current_balance_date:
          type: string
          description: Current date
          readOnly: true
          example: '2026-02-24'
      readOnly: true
      example:
        current_balance_date: '2026-02-24'
        currency: USD
        available_balance: 1000
        previous_day_closing_balance: 1000
  securitySchemes:
    AuthorizationKey:
      type: apiKey
      description: Please see the [Authentication guide](https://docs.transferzero.com/docs/authentication) on how to use these fields
      name: Authorization-Key
      in: header
    AuthorizationSecret:
      type: apiKey
      description: Please see the [Authentication guide](https://docs.transferzero.com/docs/authentication) on how to use these fields
      name: Authorization-Secret
      in: header
    AuthorizationNonce:
      type: apiKey
      description: Please see the [Authentication guide](https://docs.transferzero.com/docs/authentication) on how to use these fields
      name: Authorization-Nonce
      in: header
    AuthorizationSignature:
      type: apiKey
      description: Please see the [Authentication guide](https://docs.transferzero.com/docs/authentication) on how to use these fields
      name: Authorization-Signature
      in: header
externalDocs:
  description: API documentation and onboarding guide
  url: https://docs.transferzero.com/