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

# Get Limit

> Get deposit limit for a wallet

<Note>
  **SDK Alternative**: Use `agent.limit(eoa)` for a simpler TypeScript interface. [See SDK docs](/sdk-reference/agent/withdrawals)
</Note>

## Description

Retrieves the deposit limit and current balance for a wallet.

## Path Parameters

<ParamField path="chain_id" type="integer" required>
  The blockchain chain ID
</ParamField>

<ParamField path="wallet" type="string" required>
  The wallet address
</ParamField>

## Query Parameters

<ParamField query="eoa" type="string" required>
  The origin wallet (EOA) address
</ParamField>

## Response

<ResponseField name="limit" type="number">
  Maximum deposit limit
</ResponseField>

<RequestExample>
  ```bash cURL theme={null}
  curl "https://partners-backend-1038109371738.europe-west1.run.app/api/v1/8453/wallets/0x.../limit?eoa=0xabc..."
  ```

  ```javascript JavaScript theme={null}
  const response = await fetch(
    'https://partners-backend-1038109371738.europe-west1.run.app/api/v1/8453/wallets/0x.../limit?eoa=0xabc...'
  );
  const data = await response.json();
  ```
</RequestExample>

<ResponseExample>
  ```json 200 OK theme={null}
  {
    "limit": 100000
  }
  ```
</ResponseExample>
