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.
Call it yourself
curl for this page
This API
curl "https://apis.io/api/v1/apis/iec-cim-outages-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
openapi: 3.2.0
info:
title: IEC CIM 61968 Distribution Management Customers Outages API
description: REST API for distribution utility systems based on IEC 61968 Common Information Model (CIM) standards. Provides access to network assets, outage management, customer information, meter reading, and work management data using CIM-compliant resource representations. Implements IEC 61968 Parts 3, 4, 9, and 11 interfaces for distribution management systems (DMS) integration.
version: 1.0.0
contact:
name: CIM User Group
url: https://cimug.ucaiug.org/
license:
name: IEC License
url: https://www.iec.ch/
servers:
- url: https://dms-gateway.utility.example.com/cim/61968/v1
description: Distribution Management System CIM API gateway
security:
- OAuth2: []
- BasicAuth: []
tags:
- name: Outages
description: Outage events and management
paths:
/outages:
get:
operationId: listOutages
summary: List outage events
description: Returns current and historical outage events including cause, affected customers, and restoration status.
tags:
- Outages
parameters:
- name: status
in: query
schema:
type: string
enum:
- Active
- Restored
- Cancelled
- name: startTime
in: query
schema:
type: string
format: date-time
- name: endTime
in: query
schema:
type: string
format: date-time
- name: limit
in: query
schema:
type: integer
default: 50
responses:
'200':
description: Outage list returned
content:
application/json:
schema:
$ref: '#/components/schemas/OutageList'
/outages/{mRID}:
get:
operationId: getOutage
summary: Get outage details
description: Returns detailed information about a specific outage event including affected assets, customers, and restoration actions.
tags:
- Outages
parameters:
- name: mRID
in: path
required: true
schema:
type: string
format: uuid
responses:
'200':
description: Outage returned
content:
application/json:
schema:
$ref: '#/components/schemas/Outage'
'404':
description: Outage not found
components:
schemas:
Location:
type: object
description: CIM Location with coordinates
properties:
mRID:
type: string
format: uuid
name:
type: string
addressGeneral:
type: string
positionPoints:
type: array
items:
type: object
properties:
sequenceNumber:
type: integer
xPosition:
type: string
description: Longitude
yPosition:
type: string
description: Latitude
AssetRef:
type: object
properties:
mRID:
type: string
format: uuid
name:
type: string
assetType:
type: string
OutageList:
type: object
properties:
outages:
type: array
items:
$ref: '#/components/schemas/Outage'
total:
type: integer
Outage:
type: object
description: CIM Outage event
properties:
mRID:
type: string
format: uuid
name:
type: string
status:
type: string
enum:
- Active
- Restored
- Cancelled
startTime:
type: string
format: date-time
endTime:
type: string
format: date-time
cause:
type: string
affectedCustomers:
type: integer
location:
$ref: '#/components/schemas/Location'
affectedAssets:
type: array
items:
$ref: '#/components/schemas/AssetRef'
securitySchemes:
OAuth2:
type: oauth2
flows:
clientCredentials:
tokenUrl: https://auth.utility.example.com/oauth/token
scopes:
cim.read: Read CIM data
cim.write: Write CIM data
BasicAuth:
type: http
scheme: basic
externalDocs:
description: IEC CIM User Group
url: https://cimug.ucaiug.org/