Skip to main content
GET
/
limits
/
daily-withdrawal
Get Daily Withdrawal Limit
curl --request GET \
  --url https://api.meow.com/v1/limits/daily-withdrawal \
  --header 'x-api-key: <api-key>'
{
  "daily_withdrawal_limit": "<string>",
  "max_daily_withdrawal_limit": "100000",
  "spent_today": "<string>",
  "remaining_today": "<string>"
}

Authorizations

x-api-key
string
header
required

Your Meow API key, sent in the x-api-key header for authentication.

Headers

x-entity-id
string<uuid>

Optional entity_id to scope requests to a specific entity.

Response

200 - application/json

Successful Response

daily_withdrawal_limit
string
required

The most, in USD, that can be withdrawn from your accounts in a single day across all transfer types. This is the limit enforced on outbound transfers today.

Pattern: ^(?!^[-+.]*$)[+-]?0*\d*\.?\d*$
Example:

"50000"

max_daily_withdrawal_limit
string | null
required

The highest daily withdrawal limit you can set, in USD. When null, no maximum is configured for your entity yet, so you can only lower the limit. Contact support@meow.com to raise it.

Pattern: ^(?!^[-+.]*$)[+-]?0*\d*\.?\d*$
Example:

"100000"

spent_today
string
required

The total, in USD, you have already withdrawn today.

Pattern: ^(?!^[-+.]*$)[+-]?0*\d*\.?\d*$
Example:

"12500"

remaining_today
string
required

How much more, in USD, you can withdraw today before reaching your daily limit.

Pattern: ^(?!^[-+.]*$)[+-]?0*\d*\.?\d*$
Example:

"37500"