> For the complete documentation index, see [llms.txt](https://docs.trustlesswork.com/trustless-work/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://docs.trustlesswork.com/trustless-work/v2-en/api-rest/deploy/get-escrow-balances.md).

# Get Escrow Balances

Reads the current token balance of one or more escrow contracts **directly from the chain**. Authoritative — for a bulk financial view with deposits, releases and fees included, prefer [`GET /escrows/financial`](/trustless-work/v2-en/api-rest/escrows/get-multiple-escrow-balance.md).

{% hint style="info" %}
The reference below is generated from the **live API spec** — if anything on this page disagrees with it, the reference wins.
{% endhint %}

## Endpoint

## Read token balances of one or more deployed escrow contracts

> Invokes \`get\_multiple\_escrow\_balances\` on the single-release-v2 factory. Each address must be a deployed single-release-v2 escrow (C...). Maximum 20 addresses per call.

```json
{"openapi":"3.0.0","info":{"title":"👋🏼 Trustless Work Core API — All Endpoints (Unified)","version":"1.0"},"security":[{}],"paths":{"/escrow/single-release/v2/escrow-balances":{"get":{"description":"Invokes `get_multiple_escrow_balances` on the single-release-v2 factory. Each address must be a deployed single-release-v2 escrow (C...). Maximum 20 addresses per call.","operationId":"GetMultipleSingleReleaseV2EscrowBalancesController_list","parameters":[{"name":"addresses","required":true,"in":"query","description":"Up to 20 deployed single-release-v2 escrow addresses to query.","schema":{"type":"array","items":{"type":"string"}}}],"responses":{"200":{"description":"Balances read successfully.","content":{"application/json":{"schema":{"type":"array","items":{"$ref":"#/components/schemas/EscrowBalanceResponse"}}}}},"400":{"description":"Request body or query params fail schema validation (wrong type, missing required field, unknown property).","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ProblemDetailsResponseDto"}}}},"401":{"description":"Missing, malformed, expired, revoked or invalid API key.","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ProblemDetailsResponseDto"}}}},"403":{"description":"API key is valid but does not have the role required for this operation.","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ProblemDetailsResponseDto"}}}},"422":{"description":"Payload is well-formed but a business rule rejects it (e.g. amount out of range, role not allowed for this user).","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ProblemDetailsResponseDto"}}}},"500":{"description":"Unexpected server-side failure. Use the `traceId` to look up the incident in server logs or contact support.","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ProblemDetailsResponseDto"}}}}},"summary":"Read token balances of one or more deployed escrow contracts","tags":["Single Release Escrow V2"]}}},"components":{"schemas":{"EscrowBalanceResponse":{"type":"object","properties":{"address":{"type":"string","description":"Escrow contract address whose balance was queried."},"balance":{"type":"number","description":"Token balance held by the escrow, in human-readable decimals (already scaled by the trustline decimals)."},"decimals":{"type":"number","description":"Trustline decimals (e.g. 7 for Stellar USDC). Useful for clients that need to format the value with a fixed precision."}},"required":["address","balance","decimals"]},"ProblemDetailsResponseDto":{"type":"object","properties":{"type":{"type":"string","description":"Stable URI identifying the error type. Hash-link points to the docs."},"title":{"type":"string","description":"Short human-readable summary of the problem."},"status":{"type":"number","description":"HTTP status code, repeated here for typed clients."},"code":{"type":"string","description":"Machine-readable error code. Stable across versions; safe to switch on."},"detail":{"type":"string","description":"Human-readable explanation specific to this occurrence."},"instance":{"type":"string","description":"URI of the request that triggered the error."},"traceId":{"type":"string","description":"Correlation id propagated from the `X-Trace-Id` header (or generated). Use it when contacting support to reference a specific request."},"extensions":{"type":"object","description":"Optional structured context. Shape depends on the error code; documented per-endpoint when relevant.","additionalProperties":true}},"required":["type","title","status","code","detail"]}}}}
```

## Field notes

* Up to **20 contract addresses** per request.
* Read-only: nothing to sign, nothing to submit.


---

# Agent Instructions
This documentation is published with GitBook. GitBook is the documentation platform designed so that both humans and AI agents can read, navigate, and reason over technical content effectively. Learn more at gitbook.com.

## Querying This Documentation
If you need additional information that is not directly available in this page, you can query the documentation dynamically by asking a question.

Perform an HTTP GET request on the current page URL with the `ask` query parameter, and the optional `goal` query parameter:

```
GET https://docs.trustlesswork.com/trustless-work/v2-en/api-rest/deploy/get-escrow-balances.md?ask=<question>&goal=<endgoal>
```

`ask` is the immediate question: it should be specific, self-contained, and written in natural language.
`goal` is optional and describes the broader end goal you are ultimately trying to accomplish on behalf of the user. GitBook uses it to tailor the answer towards what is most useful for that goal.

The response will contain a direct answer to the question and relevant excerpts and sources from the documentation.

Use this mechanism when the answer is not explicitly present in the current page, you need clarification or additional context, or you want to retrieve related documentation sections.
