Western Power Content API

The Content API from Western Power — 2 operation(s) for content.

Operations 2

GET /corp/newsarticles List news articles #
GET /corp/vacancies List job vacancies #

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/western-power-content-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

western-power-content-api-openapi.yml Raw ↑
openapi: 3.2.0
info:
  title: Western Power Corporate Web Content API
  version: 2026.7.7.1
  description: The anonymous read endpoints behind westernpower.com.au itself — site search, the news article feed and the careers vacancy feed. These are internal endpoints of the Optimizely/EPiServer corporate site, declared in the site's JavaScript bundle (`/static/assets/app.*.js`) and reachable without authentication. `robots.txt` disallows `/api/` to crawlers; Western Power publishes no documentation, terms of use or SLA for them. This description was DERIVED BY API EVANGELIST from live probes on 2026-07-27 and is not published by Western Power.
  x-apievangelist-provenance:
    method: derived
    derived_by: API Evangelist
    derived_from: live HTTP probes of https://www.westernpower.com.au/api/* plus parameter names read from the site's own client bundle /static/assets/app.18c3b7f4.js
    probe_date: '2026-07-27'
    provider_published: false
  contact:
    name: Western Power
    url: https://www.westernpower.com.au/contact-us/
servers:
- url: https://www.westernpower.com.au/api
  description: Production (Cloudflare-fronted, anonymous)
tags:
- name: Content
paths:
  /corp/newsarticles:
    get:
      tags:
      - Content
      operationId: listNewsArticles
      summary: List news articles
      description: Paged feed behind westernpower.com.au/news/. Returns an empty `newsArticles` array unless `rootPageId` scopes the query to the news section; `totalMatching` and `pageSize` are always returned.
      parameters:
      - name: page
        in: query
        description: 1-based page index.
        schema:
          type: integer
      - name: selectedFilters
        in: query
        description: Repeated filter values, serialised by the client with `qs`.
        schema:
          type: array
          items:
            type: string
      - name: rootPageId
        in: query
        description: Optimizely content id of the section to list under.
        schema:
          type: string
      responses:
        '200':
          description: News article page.
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/NewsArticlePage'
  /corp/vacancies:
    get:
      tags:
      - Content
      operationId: listVacancies
      summary: List job vacancies
      description: Careers feed behind westernpower.com.au/about/careers/. Returns the open roles with location and posting date, plus the filter and sort option lists the careers page renders.
      parameters:
      - name: page
        in: query
        schema:
          type: integer
      - name: selectedLocation
        in: query
        schema:
          type: array
          items:
            type: string
      - name: selectedRole
        in: query
        schema:
          type: array
          items:
            type: string
      - name: selectedSort
        in: query
        schema:
          type: string
      - name: selectedSearchText
        in: query
        schema:
          type: string
      responses:
        '200':
          description: Vacancy page.
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/VacancyPage'
components:
  schemas:
    Vacancy:
      type: object
      properties:
        url:
          type: string
        roleName:
          type: string
        roleDescription:
          type:
          - string
          - 'null'
        location:
          type: string
        date:
          type: string
          format: date-time
    NewsArticlePage:
      type: object
      properties:
        newsArticles:
          type: array
          items:
            type: object
        pageSize:
          type: integer
        totalMatching:
          type: integer
        showFeaturedArticle:
          type: boolean
    VacancyPage:
      type: object
      properties:
        vacancies:
          type: array
          items:
            $ref: '#/components/schemas/Vacancy'
        pageSize:
          type: integer
        totalMatching:
          type: integer
        filterArray:
          type: array
          items:
            type: object
        sortingFilter:
          type: array
          items:
            type: object