Convert USD to CRC
US Dollar → Costa Rican Colón
1 USD = 453.42579 CRC(1 CRC = 0.00220543 USD)
Currency converter
1 USD =
453.4258 CRC
USD to CRC: last 30 days
Over the last 30 days, 1 USD traded between 446.2662 and 454.031 CRC, averaging 451.0835 CRC. The USD/CRC rate has not changed since 2026-08-28.
- 30-day high
- 454.031
- 2026-09-10
- 30-day low
- 446.2662
- 2026-09-20
- 30-day average
- 451.0835
- Days with data: 30
- 30-day change
- 0.00%
- since 2026-08-28
454.031
446.26622026-08-28 → 2026-09-26
| Date | 1 USD in CRC | Daily change |
|---|---|---|
| 2026-09-26 | 453.4258 | 0.00% |
| 2026-09-25 | 453.4258 | +0.15% |
| 2026-09-24 | 452.7679 | +0.22% |
| 2026-09-23 | 451.7716 | +1.00% |
| 2026-09-22 | 447.2929 | +0.04% |
| 2026-09-21 | 447.095 | +0.19% |
| 2026-09-20 | 446.2662 | -0.22% |
| 2026-09-19 | 447.2562 | -0.01% |
| 2026-09-18 | 447.2995 | -0.51% |
| 2026-09-17 | 449.5985 | +0.38% |
| 2026-09-16 | 447.9088 | -0.44% |
| 2026-09-15 | 449.8756 | -0.21% |
| 2026-09-14 | 450.8089 | +0.62% |
| 2026-09-13 | 448.0138 | -0.32% |
| 2026-09-12 | 449.452 | -0.76% |
| Date | 1 USD in CRC | Daily change |
|---|---|---|
| 2026-09-11 | 452.8935 | -0.25% |
| 2026-09-10 | 454.031 | +0.12% |
| 2026-09-09 | 453.4718 | -0.08% |
| 2026-09-08 | 453.8133 | +0.01% |
| 2026-09-07 | 453.7762 | +0.61% |
| 2026-09-06 | 451.0432 | -0.07% |
| 2026-09-05 | 451.3723 | -0.37% |
| 2026-09-04 | 453.0382 | -0.01% |
| 2026-09-03 | 453.0769 | -0.16% |
| 2026-09-02 | 453.7868 | +0.40% |
| 2026-09-01 | 451.9566 | -0.12% |
| 2026-08-31 | 452.505 | +0.62% |
| 2026-08-30 | 449.7144 | -0.58% |
| 2026-08-29 | 452.3353 | -0.24% |
| 2026-08-28 | 453.4327 | — |
USD to CRC conversion table
1 USD453.4258 CRC
5 USD2,267.129 CRC
10 USD4,534.2579 CRC
25 USD11,335.645 CRC
50 USD22,671.29 CRC
100 USD45,342.579 CRC
500 USD226,712.9 CRC
1,000 USD453,425.79 CRC
5,000 USD2,267,129 CRC
10,000 USD4,534,257.9 CRC
Get the USD/CRC rate in your app
One GET request returns the latest USD → CRC 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/CRC"fetch('https://rate-api.com/api/v1/pair/USD/CRC', {
headers: { Authorization: 'Bearer YOUR_API_KEY' },
})
.then((res) => res.json())
.then((data) => console.log(`1 USD = ${data.rate} CRC`));import requests
res = requests.get(
"https://rate-api.com/api/v1/pair/USD/CRC",
headers={"Authorization": "Bearer YOUR_API_KEY"},
timeout=10,
)
data = res.json()
print(f"1 USD = {data['rate']} CRC")<?php
$ch = curl_init('https://rate-api.com/api/v1/pair/USD/CRC');
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']} CRC\n";Example response
{
"success": true,
"pair": {
"from": "USD",
"to": "CRC"
},
"rate": 453.4258,
"timestamp": 1790432064,
"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
CRC to USDCosta Rican Colón → US Dollar0.0022054Convert USD to other currencies
Currency profiles
Rate as of 2026-09-26. Powered by the Rate-API exchange rates API.