> ## Documentation Index
> Fetch the complete documentation index at: https://docs.nedzo.ai/llms.txt
> Use this file to discover all available pages before exploring further.

# Get wallet balance

> Retrieve the current wallet balance for a workspace in cents via the Nedzo REST API. Use this endpoint to check available funds before debiting.

<ParamField path="workspaceId" type="string" required>
  Workspace UUID
</ParamField>

<RequestExample>
  ```bash cURL theme={null}
  curl "https://api.nedzo.ai/v1/workspaces/19c3b12f-ec54-43ad-8686-00e921f1befd/billing/balance" \
      -H "Authorization: Bearer YOUR_API_KEY"
  ```
</RequestExample>

<ResponseExample>
  ```json Response theme={null}
  {
    "workspaceId": "19c3b12f-ec54-43ad-8686-00e921f1befd",
    "balance": 5000,
    "currency": "usd"
  }
  ```
</ResponseExample>
