> For clean Markdown of any page, append .md to the page URL.
> For a complete documentation index, see https://docs.gomoney.me/llms.txt.
> For AI client integration (Claude Code, Cursor, etc.), connect to the MCP server at https://docs.gomoney.me/_mcp/server.

# Listar adições de saldo em customers

GET https://gmc-api.gomoney.me/api/transactions/add-balance/all

Retorna as adições de saldo em customers do usuário autenticado com filtro opcional por período.

Reference: https://docs.gomoney.me/en/api-reference/open-api-explorer/add-balance/list-add-balance

## OpenAPI Specification

```yaml
openapi: 3.1.0
info:
  title: gomoney-docs-postman-collection
  version: 1.0.0
paths:
  /transactions/add-balance/all:
    get:
      operationId: list-add-balance
      summary: Listar adições de saldo em customers
      description: >-
        Retorna as adições de saldo em customers do usuário autenticado com
        filtro opcional por período.
      tags:
        - addBalance
      parameters:
        - name: initialDate
          in: query
          description: Data inicial do filtro.
          required: false
          schema:
            type: string
            format: date
        - name: finalDate
          in: query
          description: Data final do filtro.
          required: false
          schema:
            type: string
            format: date
        - name: Authorization
          in: header
          description: Token retornado pelo endpoint `/users/integration/login`.
          required: true
          schema:
            type: string
      responses:
        '200':
          description: Lista retornada com sucesso.
          content:
            application/json:
              schema:
                type: array
                items:
                  $ref: '#/components/schemas/BalanceTransactionSummary'
        '401':
          description: Token inválido.
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/UnauthorizedError'
servers:
  - url: https://gmc-api.gomoney.me/api
    description: Base URL da API da plataforma
components:
  schemas:
    BalanceTransactionSummary:
      type: object
      properties:
        totalItems:
          type: integer
        completedItems:
          type: integer
        failedItems:
          type: integer
        totalTargetGmc:
          type: number
          format: double
      title: BalanceTransactionSummary
    UnauthorizedError:
      type: object
      properties:
        statusCode:
          type: integer
        message:
          type: string
      title: UnauthorizedError
  securitySchemes:
    accessTokenBearer:
      type: http
      scheme: bearer
      description: Token retornado pelo endpoint `/users/integration/login`.
    secretKeyHeader:
      type: apiKey
      in: header
      name: secret-key
      description: Chave Base64 no formato `btoa(clientKey:clientSecret)`.

```

## Examples



**Request**

```json
{}
```

**Response**

```json
[
  {
    "title": "Success",
    "balanceTransaction": {
      "_id": "66f0b1b5c1f7b7dc0ce40001",
      "user": "66f0b1b5c1f7b7dc0ce20001",
      "status": "COMPLETED",
      "summary": {
        "totalItems": 3,
        "completedItems": 3,
        "failedItems": 0,
        "totalTargetGmc": 4500
      },
      "items": [
        {
          "customerIdentifier": "66f0b1b5c1f7b7dc0ce20002",
          "sourceAmount": 1500,
          "sourceCurrency": "BRL",
          "targetGmcAmount": "1500",
          "status": "COMPLETED",
          "error": null,
          "customerWalletAddress": "0xAbC1234dEf5678901234567890aBcDeF12345678",
          "destinationWalletAddress": "0xDeF9876aBc5432109876543210aBcDeF98765432",
          "fees": {
            "fixedBrl": 5,
            "percentageBrl": 15,
            "totalBrl": 20,
            "issueTaxBrl": 1.5,
            "issueTaxRate": 0.1,
            "fixedFeeSource": "applied",
            "percentageFeeSource": "applied",
            "issueTaxSource": "applied"
          },
          "conversion": {
            "brlPerGmc": 1,
            "usdtBrlRate": 5.2,
            "sourceAmountBrl": 1500
          },
          "blockchain": {
            "mintHash": "0xabc123minttransactionhash",
            "approveHash": "0xdef456approvetransactionhash",
            "transferHash": "0x7890abctransfertransactionhash"
          },
          "processedAt": "1688208000"
        },
        {
          "customerIdentifier": "66f0b1b5c1f7b7dc0ce20003",
          "sourceAmount": 2000,
          "sourceCurrency": "BRL",
          "targetGmcAmount": "2000",
          "status": "COMPLETED",
          "error": null,
          "customerWalletAddress": "0x1234AbCdEf5678901234567890aBcDeF12345678",
          "destinationWalletAddress": "0x9876DeFaBc5432109876543210aBcDeF98765432",
          "fees": {
            "fixedBrl": 10,
            "percentageBrl": 20,
            "totalBrl": 30,
            "issueTaxBrl": 2,
            "issueTaxRate": 0.1,
            "fixedFeeSource": "applied",
            "percentageFeeSource": "applied",
            "issueTaxSource": "applied"
          },
          "conversion": {
            "brlPerGmc": 1,
            "usdtBrlRate": 5.2,
            "sourceAmountBrl": 2000
          },
          "blockchain": {
            "mintHash": "0xdef456minttransactionhash",
            "approveHash": "0xabc123approvetransactionhash",
            "transferHash": "0x4567abctransfertransactionhash"
          },
          "processedAt": "1688294400"
        },
        {
          "customerIdentifier": "66f0b1b5c1f7b7dc0ce20004",
          "sourceAmount": 1000,
          "sourceCurrency": "BRL",
          "targetGmcAmount": "1000",
          "status": "COMPLETED",
          "error": null,
          "customerWalletAddress": "0x5678AbCdEf5678901234567890aBcDeF12345678",
          "destinationWalletAddress": "0x4321DeFaBc5432109876543210aBcDeF98765432",
          "fees": {
            "fixedBrl": 3,
            "percentageBrl": 7,
            "totalBrl": 10,
            "issueTaxBrl": 1,
            "issueTaxRate": 0.1,
            "fixedFeeSource": "applied",
            "percentageFeeSource": "applied",
            "issueTaxSource": "applied"
          },
          "conversion": {
            "brlPerGmc": 1,
            "usdtBrlRate": 5.2,
            "sourceAmountBrl": 1000
          },
          "blockchain": {
            "mintHash": "0x7890abcminttransactionhash",
            "approveHash": "0x4567abcapprovetransactionhash",
            "transferHash": "0x1234deftransfertransactionhash"
          },
          "processedAt": "1688380800"
        }
      ],
      "createdAt": "1688208000",
      "updatedAt": "1688380800"
    }
  }
]
```

**SDK Code**

```python success
import requests

url = "https://gmc-api.gomoney.me/api/transactions/add-balance/all"

payload = {}
headers = {
    "Authorization": "Bearer <token>",
    "Content-Type": "application/json"
}

response = requests.get(url, json=payload, headers=headers)

print(response.json())
```

```javascript success
const url = 'https://gmc-api.gomoney.me/api/transactions/add-balance/all';
const options = {
  method: 'GET',
  headers: {Authorization: 'Bearer <token>', 'Content-Type': 'application/json'},
  body: '{}'
};

try {
  const response = await fetch(url, options);
  const data = await response.json();
  console.log(data);
} catch (error) {
  console.error(error);
}
```

```go success
package main

import (
	"fmt"
	"strings"
	"net/http"
	"io"
)

func main() {

	url := "https://gmc-api.gomoney.me/api/transactions/add-balance/all"

	payload := strings.NewReader("{}")

	req, _ := http.NewRequest("GET", url, payload)

	req.Header.Add("Authorization", "Bearer <token>")
	req.Header.Add("Content-Type", "application/json")

	res, _ := http.DefaultClient.Do(req)

	defer res.Body.Close()
	body, _ := io.ReadAll(res.Body)

	fmt.Println(res)
	fmt.Println(string(body))

}
```

```ruby success
require 'uri'
require 'net/http'

url = URI("https://gmc-api.gomoney.me/api/transactions/add-balance/all")

http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true

request = Net::HTTP::Get.new(url)
request["Authorization"] = 'Bearer <token>'
request["Content-Type"] = 'application/json'
request.body = "{}"

response = http.request(request)
puts response.read_body
```

```java success
import com.mashape.unirest.http.HttpResponse;
import com.mashape.unirest.http.Unirest;

HttpResponse<String> response = Unirest.get("https://gmc-api.gomoney.me/api/transactions/add-balance/all")
  .header("Authorization", "Bearer <token>")
  .header("Content-Type", "application/json")
  .body("{}")
  .asString();
```

```php success
<?php
require_once('vendor/autoload.php');

$client = new \GuzzleHttp\Client();

$response = $client->request('GET', 'https://gmc-api.gomoney.me/api/transactions/add-balance/all', [
  'body' => '{}',
  'headers' => [
    'Authorization' => 'Bearer <token>',
    'Content-Type' => 'application/json',
  ],
]);

echo $response->getBody();
```

```csharp success
using RestSharp;

var client = new RestClient("https://gmc-api.gomoney.me/api/transactions/add-balance/all");
var request = new RestRequest(Method.GET);
request.AddHeader("Authorization", "Bearer <token>");
request.AddHeader("Content-Type", "application/json");
request.AddParameter("application/json", "{}", ParameterType.RequestBody);
IRestResponse response = client.Execute(request);
```

```swift success
import Foundation

let headers = [
  "Authorization": "Bearer <token>",
  "Content-Type": "application/json"
]
let parameters = [] as [String : Any]

let postData = JSONSerialization.data(withJSONObject: parameters, options: [])

let request = NSMutableURLRequest(url: NSURL(string: "https://gmc-api.gomoney.me/api/transactions/add-balance/all")! as URL,
                                        cachePolicy: .useProtocolCachePolicy,
                                    timeoutInterval: 10.0)
request.httpMethod = "GET"
request.allHTTPHeaderFields = headers
request.httpBody = postData as Data

let session = URLSession.shared
let dataTask = session.dataTask(with: request as URLRequest, completionHandler: { (data, response, error) -> Void in
  if (error != nil) {
    print(error as Any)
  } else {
    let httpResponse = response as? HTTPURLResponse
    print(httpResponse)
  }
})

dataTask.resume()
```