AEMO OAUTH V1 API

oauth-v1

Operations 1

POST /token Request a Token #

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/aemo-oauth-v1-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

aemo-oauth-v1-api-openapi.yml Raw ↑
openapi: 3.2.0
info:
  title: OAUTH V1 API
  description: oauth-v1
  version: '3.0'
  x-origin:
  - format: openapi
    source: AEMO API Management developer portal
    url: https://dev.aemo.com.au/developer/apis/oauth-v1/operations?api-version=2022-04-01-preview
servers:
- url: https://api-prd.aemo.local/oauth/v1
security:
- {}
- apiKeyHeader: []
- apiKeyQuery: []
tags:
- name: oauth-v1
  description: oauth-v1
paths:
  /token:
    post:
      operationId: requestAToken
      summary: Request a Token
      tags:
      - oauth-v1
      description: Request for a New Token.  This request uses API Key Details as BasicAuth as the Authentication Method.
      parameters:
      - name: grant_type
        in: query
        required: false
        schema:
          type: string
        description: Grant Type
      - name: Authorization
        in: header
        required: true
        schema:
          type: string
        description: client id and client secret
      responses:
        '200':
          description: Succesfully generated token
          content:
            application/json:
              example:
                transactionID: b85a35f8-f741-40ac-a701-a8cfebb25669
                acess_token: Gy3TJkeHAC3bDxO2YBp
                access_token_expires_in: '3599'
        '401':
          description: Unauthorized
          content:
            application/json:
              example:
                code: 401
                title: Unauthorized
                detail: Authorization failed
                source: API Gateway
        '405':
          description: Method Not Allowed
          content:
            application/json:
              example:
                code: 405
                title: Method Not Allowed
                detail: Input request HTTP method is <Invalid Method passed>, but operation accepts only [<Valid Method>]
                source: ''
        '500':
          description: Internal Server Error
          content:
            application/json:
              example:
                code: 500
                title: Internal Server Error
                detail: Internal Server Error
                source: ''
components:
  securitySchemes:
    apiKeyHeader:
      type: apiKey
      name: x-apikey
      in: header
    apiKeyQuery:
      type: apiKey
      name: subscription-key
      in: query