v1

latestOpenAPI 3.0.42026-07-233182951.4 MB
Data Status

Status of ingested REMIT Data

This endpoint provides information about the number of data points ingested for the REMIT dataset.

The settlementDateFrom and settlementDateTo query parameters are optional. If they're not provided, the endpoint will return data for up to the last 25 Settlement Periods, including the current one.

The source parameter is optional and allows filtering by data source:

  • 'Elexon' for Elexon Portal data (files prefixed with ELXP-RMT)
  • 'MFT' for MFT data (files prefixed with NGET-RMT)
  • If not provided, returns total data points from all sources
get/data-status/REMIT

Query parameters

source'Elexon' | 'MFT'

Optional filter for data source. Use 'Elexon' for Elexon Portal data (ELXP-RMT prefix) or 'MFT' for MFT data (NGET-RMT prefix). If not provided, returns all data points.

settlementDateFromstring date
Example:2022-09-20

The settlement date from filter. This must be in the format yyyy-MM-dd.

settlementDateTostring date
Example:2022-09-21

The settlement date to filter. This must be in the format yyyy-MM-dd.

format'json' | 'xml' | 'csv'

Response data format. Use json/xml to include metadata.

Response

Data retrieved

Example response

{
  "data": [
    {
      "settlementDate": "2021-12-05",
      "settlementPeriod": 14,
      "dataPointCount": 31
    }
  ],
  "metadata": {
    "datasets": [
      "DATASET"
    ],
    "source": "Elexon"
  }
}