GET /apiv2/aml/providers
List available AML providers with current prices.
Endpoint URL
GET https://netts.io/apiv2/aml/providersRequest Headers
| Header | Required | Description |
|---|---|---|
| X-API-KEY | Yes | Your API key from Netts dashboard |
Example Requests
cURL
bash
curl -X GET https://netts.io/apiv2/aml/providers \
-H "X-API-KEY: your_api_key" \Python
python
import requests
headers = {
"X-API-KEY": "your_api_key",
}
response = requests.get("https://netts.io/apiv2/aml/providers", headers=headers)
data = response.json()
for provider in data["data"]["providers"]:
print(f"{provider['provider']}: ${provider['price_usdt']} ({provider['price_trx']} TRX)")Response
Success (200 OK)
json
{
"success": true,
"data": {
"providers": [
{
"provider": "elliptic",
"price_usdt": 0.98,
"price_trx": 3.43,
"available": true
},
{
"provider": "bitok",
"price_usdt": 0.5,
"price_trx": 1.75,
"available": true
}
],
"trx_rate_usd": 0.285756,
"supported_formats": ["rate", "full", "md", "pdf"],
"supported_languages": ["en"]
},
"timestamp": "2026-03-10 09:52:03"
}Response Fields
| Field | Type | Description |
|---|---|---|
| providers[].provider | string | Provider name: elliptic or bitok |
| providers[].price_usdt | number | Price per check in USDT |
| providers[].price_trx | number | Price per check in TRX (at current rate) |
| providers[].available | boolean | Whether provider is currently available |
| providers[].reason | string | Present when available: false, e.g. quota_exhausted |
| trx_rate_usd | number | Current TRX/USD exchange rate |
Notes
- Prices include reseller discounts if applicable
- TRX prices recalculated based on live exchange rate