# EUR Exchange Rates Scraper

**Use case:** 

Scrape the latest EUR foreign exchange rates against world currencies. Get up-to-date FX conversion data for the euro.

## Input

```json
{
  "mode": "latest",
  "baseCurrency": "EUR",
  "targetCurrencies": [],
  "maxItems": 5
}
```

## Output

```json
{
  "date": {
    "label": "Date",
    "format": "text"
  },
  "baseCurrency": {
    "label": "Base Currency",
    "format": "text"
  },
  "targetCurrency": {
    "label": "Target Currency",
    "format": "text"
  },
  "rate": {
    "label": "Rate",
    "format": "number"
  },
  "inverseRate": {
    "label": "Inverse Rate",
    "format": "number"
  },
  "timeLastUpdate": {
    "label": "Time Last Update",
    "format": "text"
  },
  "timeNextUpdate": {
    "label": "Time Next Update",
    "format": "text"
  },
  "scrapedAt": {
    "label": "Scraped At",
    "format": "text"
  }
}
```

## About this Actor

This example demonstrates how to use [exchangerate.host FX Rates Scraper](https://apify.com/parseforge/exchangerate-host-scraper) with a specific input configuration. Visit the [Actor detail page](https://apify.com/parseforge/exchangerate-host-scraper) to learn more, explore other use cases, and run it yourself.