Bonneville Power Administration Customers API

The Customers API from Bonneville Power Administration — 3 operation(s) for customers.

Operations 3

GET /services/BPA_CustomerPublics/FeatureServer/0/query Query the BPA public-utility customers layer #
GET /services/BPA_CustomerIOU/FeatureServer/0/query Query the BPA investor-owned utility customers layer #
GET /services/BPA_CustomerTribal/FeatureServer/0/query Query the BPA tribal customers layer #

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/bonneville-power-administration-customers-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 form to fill in. Signing in shares your email address with us — we store it to create your key and to recognise you if you sign in with another provider. See our Privacy Policy and Terms.

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

OpenAPI Specification

bonneville-power-administration-customers-api-openapi.yml Raw ↑
openapi: 3.2.0
info:
  title: Bonneville Power Administration GIS Hub Customers API
  description: 'BPA GIS Data Hub serves public geospatial data via ArcGIS Online Feature

    Services. Each layer is exposed as a standard ArcGIS REST FeatureServer

    supporting query, format conversion, replica creation, and size estimates.

    The endpoints below cover the published BPA layers (service area, customer

    classes, transmission lines, transmission structures, right-of-way, and

    Columbia River Basin).

    '
  version: 1.0.0
  contact:
    name: BPA GIS Data Hub
    url: https://data-bpagis.hub.arcgis.com
servers:
- url: https://services3.arcgis.com/Iz3chmSt4P7oOoZy/arcgis/rest
  description: BPA public ArcGIS REST services host
security: []
tags:
- name: Customers
paths:
  /services/BPA_CustomerPublics/FeatureServer/0/query:
    get:
      operationId: queryCustomerPublics
      summary: Query the BPA public-utility customers layer
      tags:
      - Customers
      parameters:
      - $ref: '#/components/parameters/Where'
      - $ref: '#/components/parameters/OutFields'
      - $ref: '#/components/parameters/F'
      responses:
        '200':
          description: ArcGIS query result
  /services/BPA_CustomerIOU/FeatureServer/0/query:
    get:
      operationId: queryCustomerIOU
      summary: Query the BPA investor-owned utility customers layer
      tags:
      - Customers
      parameters:
      - $ref: '#/components/parameters/Where'
      - $ref: '#/components/parameters/OutFields'
      - $ref: '#/components/parameters/F'
      responses:
        '200':
          description: ArcGIS query result
  /services/BPA_CustomerTribal/FeatureServer/0/query:
    get:
      operationId: queryCustomerTribal
      summary: Query the BPA tribal customers layer
      tags:
      - Customers
      parameters:
      - $ref: '#/components/parameters/Where'
      - $ref: '#/components/parameters/OutFields'
      - $ref: '#/components/parameters/F'
      responses:
        '200':
          description: ArcGIS query result
components:
  parameters:
    F:
      name: f
      in: query
      description: Response format.
      schema:
        type: string
        enum:
        - json
        - geojson
        - html
        - pjson
        default: json
    OutFields:
      name: outFields
      in: query
      description: Comma separated list of fields to return. Use "*" to return all fields.
      schema:
        type: string
        default: '*'
    Where:
      name: where
      in: query
      description: SQL where clause used to filter features. Use "1=1" to return all features.
      schema:
        type: string
        default: 1=1