# Bank of England SONIA Rate History Scraper

**Use case:** 

Scrape the SONIA overnight index rate (IUDSOIA) time series with date, value, and ISO date from the Bank of England IADB. Export JSON or CSV.

## Input

```json
{
  "seriesCodes": [
    "IUDSOIA"
  ],
  "dateFrom": "2026-01-01",
  "dateTo": "now",
  "maxItems": 5
}
```

## Output

```json
{
  "seriesCode": {
    "label": "🏷 Series Code",
    "format": "text"
  },
  "date": {
    "label": "📅 Date",
    "format": "text"
  },
  "value": {
    "label": "📈 Value",
    "format": "number"
  },
  "isoDate": {
    "label": "🗓 ISO Date",
    "format": "text"
  },
  "scrapedAt": {
    "label": "🕒 Scraped",
    "format": "date"
  },
  "error": {
    "label": "❌ Error",
    "format": "text"
  }
}
```

## About this Actor

This example demonstrates how to use [DIA Crypto Price Oracle Scraper](https://apify.com/parseforge/bank-of-england-iadb-scraper) with a specific input configuration. Visit the [Actor detail page](https://apify.com/parseforge/bank-of-england-iadb-scraper) to learn more, explore other use cases, and run it yourself.