Octopus Energy · Capability

Octopus Energy Public API — Products Catalog

Octopus Energy Public API — Products Catalog. 2 operations. Lead operation: List Products. Self-contained Naftiko capability covering one Octopus Energy business surface.

Octopus Energy Public API — Products Catalog is a Naftiko capability published by Octopus Energy, one of 12 capabilities the APIs.io network indexes for this provider. It bundles 2 operations across the GET method rooted at /v1/products.

The capability includes 2 read-only operations. Lead operation: List Octopus Energy Products. Can be deployed as a REST endpoint, MCP tool, or Agent Skill via Naftiko.

Tagged areas include Octopus Energy, Products, and Catalog.

Run with Naftiko Octopus EnergyProductsCatalog

What You Can Do

GET
Listproducts — List Octopus Energy Products
/v1/products
GET
Getproduct — Retrieve an Octopus Energy Product
/v1/products/{product-code}

MCP Tools

octopus-list-products

List Octopus Energy Products

read-only idempotent
octopus-get-product

Retrieve an Octopus Energy Product

read-only idempotent

Capability Spec

products-catalog.yaml Raw ↑
naftiko: 1.0.0-alpha2
info:
  label: Octopus Energy Public API — Products Catalog
  description: 'Octopus Energy Public API — Products Catalog. 2 operations. Lead operation: List Products. Self-contained Naftiko capability covering one Octopus Energy business surface.'
  tags:
  - Octopus Energy
  - Products
  - Catalog
  created: '2026-05-25'
  modified: '2026-05-25'
binds:
- namespace: env
  keys:
    OCTOPUS_API_KEY: OCTOPUS_API_KEY
capability:
  consumes:
  - type: http
    namespace: products-catalog
    baseUri: https://api.octopus.energy/v1
    description: Octopus Energy Public API — Products business capability.
    resources:
    - name: products
      path: /products/
      operations:
      - name: listproducts
        method: GET
        description: List Octopus Energy Products
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
    - name: products-product_code
      path: /products/{product_code}/
      operations:
      - name: getproduct
        method: GET
        description: Retrieve an Octopus Energy Product
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
    authentication:
      type: basic
      username: '{{env.OCTOPUS_API_KEY}}'
      password: ''
  exposes:
  - type: rest
    namespace: products-catalog-rest
    port: 8080
    description: REST adapter for Octopus Energy Products Catalog.
    resources:
    - path: /v1/products
      name: products
      description: REST surface for products.
      operations:
      - method: GET
        name: listproducts
        description: List Octopus Energy Products
        call: products-catalog.listproducts
        outputParameters:
        - type: object
          mapping: $.
    - path: /v1/products/{product-code}
      name: products-product-code
      description: REST surface for products-product_code.
      operations:
      - method: GET
        name: getproduct
        description: Retrieve an Octopus Energy Product
        call: products-catalog.getproduct
        outputParameters:
        - type: object
          mapping: $.
  - type: mcp
    namespace: products-catalog-mcp
    port: 9090
    transport: http
    description: MCP adapter for Octopus Energy Products Catalog.
    tools:
    - name: octopus-list-products
      description: List Octopus Energy Products
      hints: {readOnly: true, destructive: false, idempotent: true}
      call: products-catalog.listproducts
      outputParameters:
      - type: object
        mapping: $.
    - name: octopus-get-product
      description: Retrieve an Octopus Energy Product
      hints: {readOnly: true, destructive: false, idempotent: true}
      call: products-catalog.getproduct
      outputParameters:
      - type: object
        mapping: $.