Convert USD to HTG
US Dollar → Haitian Gourde
1 USD = 130.82609 HTG(1 HTG = 0.00764374 USD)
Currency converter
1 USD =
130.8261 HTG
USD to HTG: last 30 days
Over the last 30 days, 1 USD traded between 130.5503 and 132.5548 HTG, averaging 130.9263 HTG. The USD/HTG rate is up 0.11% since 2026-08-28.
- 30-day high
- 132.5548
- 2026-09-13
- 30-day low
- 130.5503
- 2026-09-04
- 30-day average
- 130.9263
- Days with data: 30
- 30-day change
- +0.11%
- since 2026-08-28
132.5548
130.55032026-08-28 → 2026-09-26
| Date | 1 USD in HTG | Daily change |
|---|---|---|
| 2026-09-26 | 130.8261 | 0.00% |
| 2026-09-25 | 130.8261 | -0.09% |
| 2026-09-24 | 130.9418 | -0.11% |
| 2026-09-23 | 131.091 | +0.21% |
| 2026-09-22 | 130.8205 | +0.19% |
| 2026-09-21 | 130.5768 | -0.47% |
| 2026-09-20 | 131.1901 | +0.35% |
| 2026-09-19 | 130.7379 | +0.04% |
| 2026-09-18 | 130.6794 | -0.77% |
| 2026-09-17 | 131.6986 | +0.78% |
| 2026-09-16 | 130.6835 | -0.14% |
| 2026-09-15 | 130.8619 | +0.04% |
| 2026-09-14 | 130.8112 | -1.32% |
| 2026-09-13 | 132.5548 | +1.46% |
| 2026-09-12 | 130.6451 | -0.14% |
| Date | 1 USD in HTG | Daily change |
|---|---|---|
| 2026-09-11 | 130.8319 | +0.05% |
| 2026-09-10 | 130.7698 | +0.07% |
| 2026-09-09 | 130.6838 | -0.05% |
| 2026-09-08 | 130.7483 | -0.04% |
| 2026-09-07 | 130.8067 | -0.33% |
| 2026-09-06 | 131.2426 | +0.35% |
| 2026-09-05 | 130.7891 | +0.18% |
| 2026-09-04 | 130.5503 | -0.19% |
| 2026-09-03 | 130.7958 | -0.13% |
| 2026-09-02 | 130.962 | +0.24% |
| 2026-09-01 | 130.6523 | -0.66% |
| 2026-08-31 | 131.5201 | +0.34% |
| 2026-08-30 | 131.0755 | +0.26% |
| 2026-08-29 | 130.7394 | +0.05% |
| 2026-08-28 | 130.6766 | — |
USD to HTG conversion table
1 USD130.8261 HTG
5 USD654.1305 HTG
10 USD1,308.2609 HTG
25 USD3,270.6523 HTG
50 USD6,541.3047 HTG
100 USD13,082.609 HTG
500 USD65,413.047 HTG
1,000 USD130,826.09 HTG
5,000 USD654,130.47 HTG
10,000 USD1,308,260.9 HTG
Get the USD/HTG rate in your app
One GET request returns the latest USD → HTG rate as JSON. Send your API key in the Authorization header.
curl -H "Authorization: Bearer YOUR_API_KEY" \
"https://rate-api.com/api/v1/pair/USD/HTG"fetch('https://rate-api.com/api/v1/pair/USD/HTG', {
headers: { Authorization: 'Bearer YOUR_API_KEY' },
})
.then((res) => res.json())
.then((data) => console.log(`1 USD = ${data.rate} HTG`));import requests
res = requests.get(
"https://rate-api.com/api/v1/pair/USD/HTG",
headers={"Authorization": "Bearer YOUR_API_KEY"},
timeout=10,
)
data = res.json()
print(f"1 USD = {data['rate']} HTG")<?php
$ch = curl_init('https://rate-api.com/api/v1/pair/USD/HTG');
curl_setopt_array($ch, [
CURLOPT_RETURNTRANSFER => true,
CURLOPT_HTTPHEADER => ['Authorization: Bearer YOUR_API_KEY'],
]);
$data = json_decode(curl_exec($ch), true);
echo "1 USD = {$data['rate']} HTG\n";Example response
{
"success": true,
"pair": {
"from": "USD",
"to": "HTG"
},
"rate": 130.8261,
"timestamp": 1790429432,
"date": "2026-09-26"
}Replace YOUR_API_KEY with a key from your dashboard. The same key also works in the URL path or an X-API-Key header.
Get your free API key
Free plan: 2,500 requests a month, no credit card. Upgrade any time for conversion, historical rates and higher limits.
Related conversions
HTG to USDHaitian Gourde → US Dollar0.0076437Convert USD to other currencies
Currency profiles
Rate as of 2026-09-26. Powered by the Rate-API exchange rates API.