Modo Energy GB API

Great Britain market datasets

Work with this as data

Every API here is available over the APIs.io API and to AI agents over MCP.

MCP server

One button, every client — Claude, Cursor, VS Code and the rest.

https://apis.io/mcp

Tools for apis

7 MCP tools reach this
  • find_apisBrowse and filter every API in the catalog.
  • get_api_artifactsOne API's artifacts, grouped by type.
  • get_openapiThe primary OpenAPI for this API.
  • find_similar_apisAPIs that look like this one.
  • apis_io_searchSTART HERE — APIs, providers and tags for one query, each with its total.
  • resolveTurn a domain, URL or GitHub org into the provider it belongs to.
  • find_cohortsEvery scored population of providers in the catalog.
All 92 tools

Call it yourself

curl for this page
This API
curl "https://apis.io/api/v1/apis/modo-energy-gb-api"
All apis
curl "https://apis.io/api/v1/apis?limit=25"

Discovery needs no key. Ratings and market analysis are Pro.

Get an API key

Free tier, no email required.

A second provider on the same verified email joins the account you already have.

OpenAPI Specification

modo-energy-gb-api-openapi.yml Raw ↑
openapi: 3.1.0
info:
  title: Modo Energy ERCOT GB API
  version: v1
  description: 'Modo Energy''s public API for battery operators, owners, and utilities to

    consume energy market data. RESTful, JSON-encoded; authenticated via an

    `X-Token` header. Public API rate limit is 1000 requests per minute.


    Endpoint structure: `api.modoenergy.com/pub/v1/{locale}/{source}/{datapoint}`.

    '
  contact:
    name: Modo Energy
    url: https://developers.modoenergy.com/docs/getting-started
servers:
- url: https://api.modoenergy.com/pub/v1
  description: Modo Energy public API
security:
- apiKey: []
tags:
- name: GB
  description: Great Britain market datasets
paths:
  /gb/modo/benchmarking/monthly-leaderboard:
    get:
      tags:
      - GB
      operationId: monthlyLeaderboard
      summary: Monthly Leaderboard
      description: GB Leaderboard results per calendar month.
      parameters:
      - name: date_from
        in: query
        required: true
        description: Start month, format `yyyy-mm`.
        schema:
          type: string
      - name: date_to
        in: query
        required: true
        description: End month, format `yyyy-mm`.
        schema:
          type: string
      - name: asset_name
        in: query
        required: false
        description: Name of an individual battery energy storage asset.
        schema:
          type: string
      - name: limit
        in: query
        required: false
        schema:
          type: integer
      - name: offset
        in: query
        required: false
        schema:
          type: integer
      responses:
        '200':
          description: Success
        '401':
          description: Unauthorized
        '403':
          description: Forbidden
        '429':
          description: Too Many Requests
  /gb/modo/benchmarking/asset-operations-live:
    get:
      tags:
      - GB
      operationId: assetOperations
      summary: Asset Operations
      description: Live detailed revenue breakdown for individual GB battery assets.
      parameters:
      - name: settlement_date_from
        in: query
        required: true
        description: Start delivery date, format `yyyy-mm-dd`.
        schema:
          type: string
          format: date
      - name: settlement_date_to
        in: query
        required: true
        description: End delivery date, format `yyyy-mm-dd`.
        schema:
          type: string
          format: date
      - name: asset_name
        in: query
        required: false
        schema:
          type: string
      - name: limit
        in: query
        required: false
        schema:
          type: integer
      - name: offset
        in: query
        required: false
        schema:
          type: integer
      responses:
        '200':
          description: Success
        '401':
          description: Unauthorized
        '429':
          description: Too Many Requests
  /gb/modo/benchmarking/leaderboard-live:
    get:
      tags:
      - GB
      operationId: indexBreakdown
      summary: Index Breakdown
      description: Live Leaderboard data for individual GB battery assets.
      parameters:
      - name: settlement_date_from
        in: query
        required: true
        schema:
          type: string
          format: date
      - name: settlement_date_to
        in: query
        required: true
        schema:
          type: string
          format: date
      - name: asset_name
        in: query
        required: false
        schema:
          type: string
      - name: limit
        in: query
        required: false
        schema:
          type: integer
      - name: offset
        in: query
        required: false
        schema:
          type: integer
      responses:
        '200':
          description: Success
        '401':
          description: Unauthorized
        '429':
          description: Too Many Requests
components:
  securitySchemes:
    apiKey:
      type: apiKey
      in: header
      name: X-Token
      description: Public API token obtained from your Modo Energy account.