Convert CRC to EUR
Costa Rican Colón → Euro
1 CRC = 0.00193408 EUR(1 EUR = 517.04143 CRC)
Currency converter
1 CRC =
0.0019341 EUR
CRC to EUR: last 30 days
Over the last 30 days, 1 CRC traded between 0.0018926 and 0.0019553 EUR, averaging 0.0019197 EUR. The CRC/EUR rate is up 2.11% since 2026-08-28.
- 30-day high
- 0.0019553
- 2026-09-20
- 30-day low
- 0.0018926
- 2026-09-09
- 30-day average
- 0.0019197
- Days with data: 30
- 30-day change
- +2.11%
- since 2026-08-28
0.0019553
0.00189262026-08-28 → 2026-09-26
| Date | 1 CRC in EUR | Daily change |
|---|---|---|
| 2026-09-26 | 0.0019341 | 0.00% |
| 2026-09-25 | 0.0019341 | -0.46% |
| 2026-09-24 | 0.001943 | +0.17% |
| 2026-09-23 | 0.0019398 | -0.54% |
| 2026-09-22 | 0.0019503 | +0.19% |
| 2026-09-21 | 0.0019466 | -0.45% |
| 2026-09-20 | 0.0019553 | +0.22% |
| 2026-09-19 | 0.001951 | +0.01% |
| 2026-09-18 | 0.0019508 | +0.70% |
| 2026-09-17 | 0.0019373 | +0.11% |
| 2026-09-16 | 0.0019352 | +0.46% |
| 2026-09-15 | 0.0019264 | +0.31% |
| 2026-09-14 | 0.0019204 | -0.27% |
| 2026-09-13 | 0.0019255 | +0.32% |
| 2026-09-12 | 0.0019194 | +0.77% |
| Date | 1 CRC in EUR | Daily change |
|---|---|---|
| 2026-09-11 | 0.0019048 | +0.46% |
| 2026-09-10 | 0.0018961 | +0.19% |
| 2026-09-09 | 0.0018926 | -0.25% |
| 2026-09-08 | 0.0018973 | +0.06% |
| 2026-09-07 | 0.0018962 | -0.60% |
| 2026-09-06 | 0.0019077 | +0.07% |
| 2026-09-05 | 0.0019063 | +0.37% |
| 2026-09-04 | 0.0018993 | -0.05% |
| 2026-09-03 | 0.0019003 | -0.16% |
| 2026-09-02 | 0.0019033 | -0.30% |
| 2026-09-01 | 0.0019091 | +0.17% |
| 2026-08-31 | 0.0019058 | -0.21% |
| 2026-08-30 | 0.0019099 | +0.58% |
| 2026-08-29 | 0.0018988 | +0.24% |
| 2026-08-28 | 0.0018942 | — |
CRC to EUR conversion table
1 CRC0.0019341 EUR
5 CRC0.0096704 EUR
10 CRC0.019341 EUR
25 CRC0.048352 EUR
50 CRC0.096704 EUR
100 CRC0.19341 EUR
500 CRC0.96704 EUR
1,000 CRC1.9341 EUR
5,000 CRC9.6704 EUR
10,000 CRC19.3408 EUR
Get the CRC/EUR rate in your app
One GET request returns the latest CRC → EUR 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/EUR?precision=6"fetch('https://rate-api.com/api/v1/pair/CRC/EUR?precision=6', {
headers: { Authorization: 'Bearer YOUR_API_KEY' },
})
.then((res) => res.json())
.then((data) => console.log(`1 CRC = ${data.rate} EUR`));import requests
res = requests.get(
"https://rate-api.com/api/v1/pair/CRC/EUR?precision=6",
headers={"Authorization": "Bearer YOUR_API_KEY"},
timeout=10,
)
data = res.json()
print(f"1 CRC = {data['rate']} EUR")<?php
$ch = curl_init('https://rate-api.com/api/v1/pair/CRC/EUR?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']} EUR\n";Example response
{
"success": true,
"pair": {
"from": "CRC",
"to": "EUR"
},
"rate": 0.001934,
"timestamp": 1790435117,
"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
EUR to CRCEuro → Costa Rican Colón517.0414Convert CRC to other currencies
Convert other currencies to EUR
Currency profiles
Rate as of 2026-09-26. Powered by the Rate-API exchange rates API.