# Get Transaction Limits

You will be able to retrieve the remaining transaction limits of a particular user based on your spec sheet and transactions they have already created.&#x20;

#### `GET /users/{{user_id}}/transaction-limit?destination={{countryCode}}`

{% tabs %}
{% tab title="Details" %}

| Field                           | Required | Type    | Description                                                         |
| ------------------------------- | -------- | ------- | ------------------------------------------------------------------- |
| country                         | Response | String  | 2-letter ISO code of the user’s country.                            |
| current\_tier                   | Response | Numeric | Current tier of the user                                            |
| remaining\_limit                | Response | Object  | Remaining transaction limits of the user in the current tier        |
| remaining\_limit.annual\_limit  | Response | Numeric | Remaining annual transaction limit of the user in the current tier  |
| remaining\_limit.monthly\_limit | Response | Numeric | Remaining monthly transaction limit of the user in the current tier |
| remaining\_limit.daily\_limit   | Response | Numeric | Remaining daily transaction limit of the user in the current tier   |
| user\_id                        | Response | UUID    | UUID of the user                                                    |
| {% endtab %}                    |          |         |                                                                     |

{% tab title="Request Sample" %}

```
curl --location --request GET '{{url}}/users/{{user_id}}/transaction-limit?destination='\''US'\''' \
--header 'X-Client-Id:{{client_id}} ' \
--header 'X-Client-Secret: {{client_secret}}' \
--header 'Content-Type: application/json'
```

{% endtab %}

{% tab title="Response Sample" %}

```
{
	"country": "US",
	"current_tier": 1,
	"remaining_limit": {
    	"annual_limit": 9200.00,
    	"daily_limit": 200,
    	"monthly_limit": 4200.00
	},
	"user_id": "868a53c0-26b9-47d5-b79d-c7833842a681"
}
```

{% endtab %}
{% endtabs %}
