Convert CRC to USD
Costa Rican Colón → US Dollar
1 CRC = 0.00220543 USD(1 USD = 453.42579 CRC)
Currency converter
1 CRC =
0.0022054 USD
CRC to USD: last 30 days
Over the last 30 days, 1 CRC traded between 0.0022025 and 0.0022408 USD, averaging 0.002217 USD. The CRC/USD rate has not changed since 2026-08-28.
- 30-day high
- 0.0022408
- 2026-09-20
- 30-day low
- 0.0022025
- 2026-09-10
- 30-day average
- 0.002217
- Days with data: 30
- 30-day change
- 0.00%
- since 2026-08-28
0.0022408
0.00220252026-08-28 → 2026-09-26
| Date | 1 CRC in USD | Daily change |
|---|---|---|
| 2026-09-26 | 0.0022054 | 0.00% |
| 2026-09-25 | 0.0022054 | -0.15% |
| 2026-09-24 | 0.0022086 | -0.22% |
| 2026-09-23 | 0.0022135 | -0.99% |
| 2026-09-22 | 0.0022357 | -0.04% |
| 2026-09-21 | 0.0022367 | -0.19% |
| 2026-09-20 | 0.0022408 | +0.22% |
| 2026-09-19 | 0.0022359 | +0.01% |
| 2026-09-18 | 0.0022356 | +0.51% |
| 2026-09-17 | 0.0022242 | -0.38% |
| 2026-09-16 | 0.0022326 | +0.44% |
| 2026-09-15 | 0.0022228 | +0.21% |
| 2026-09-14 | 0.0022182 | -0.62% |
| 2026-09-13 | 0.0022321 | +0.32% |
| 2026-09-12 | 0.0022249 | +0.77% |
| Date | 1 CRC in USD | Daily change |
|---|---|---|
| 2026-09-11 | 0.002208 | +0.25% |
| 2026-09-10 | 0.0022025 | -0.12% |
| 2026-09-09 | 0.0022052 | +0.08% |
| 2026-09-08 | 0.0022035 | -0.01% |
| 2026-09-07 | 0.0022037 | -0.60% |
| 2026-09-06 | 0.0022171 | +0.07% |
| 2026-09-05 | 0.0022155 | +0.37% |
| 2026-09-04 | 0.0022073 | +0.01% |
| 2026-09-03 | 0.0022071 | +0.16% |
| 2026-09-02 | 0.0022037 | -0.40% |
| 2026-09-01 | 0.0022126 | +0.12% |
| 2026-08-31 | 0.0022099 | -0.62% |
| 2026-08-30 | 0.0022236 | +0.58% |
| 2026-08-29 | 0.0022107 | +0.24% |
| 2026-08-28 | 0.0022054 | — |
CRC to USD conversion table
1 CRC0.0022054 USD
5 CRC0.011027 USD
10 CRC0.022054 USD
25 CRC0.055136 USD
50 CRC0.11027 USD
100 CRC0.22054 USD
500 CRC1.1027 USD
1,000 CRC2.2054 USD
5,000 CRC11.0272 USD
10,000 CRC22.0543 USD
Get the CRC/USD rate in your app
One GET request returns the latest CRC → USD 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/CRC/USD?precision=6"fetch('https://rate-api.com/api/v1/pair/CRC/USD?precision=6', {
headers: { Authorization: 'Bearer YOUR_API_KEY' },
})
.then((res) => res.json())
.then((data) => console.log(`1 CRC = ${data.rate} USD`));import requests
res = requests.get(
"https://rate-api.com/api/v1/pair/CRC/USD?precision=6",
headers={"Authorization": "Bearer YOUR_API_KEY"},
timeout=10,
)
data = res.json()
print(f"1 CRC = {data['rate']} USD")<?php
$ch = curl_init('https://rate-api.com/api/v1/pair/CRC/USD?precision=6');
curl_setopt_array($ch, [
CURLOPT_RETURNTRANSFER => true,
CURLOPT_HTTPHEADER => ['Authorization: Bearer YOUR_API_KEY'],
]);
$data = json_decode(curl_exec($ch), true);
echo "1 CRC = {$data['rate']} USD\n";Example response
{
"success": true,
"pair": {
"from": "CRC",
"to": "USD"
},
"rate": 0.002205,
"timestamp": 1790432069,
"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
USD to CRCUS Dollar → Costa Rican Colón453.4258Convert CRC to other currencies
Currency profiles
Rate as of 2026-09-26. Powered by the Rate-API exchange rates API.