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.
openapi: 3.2.0
info:
title: Entergy WordPress REST Wp API
version: 1.0.0
summary: The public WordPress core REST API exposed by entergy.com.
description: The anonymous, machine-readable REST surface published at https://www.entergy.com/wp-json/.
contact:
name: Entergy Corporation
url: https://www.entergy.com/contact
x-generated-from: https://www.entergy.com/wp-json/ (WordPress REST API route index, fetched 2026-09-06, HTTP 200)
x-provenance-method: derived
servers:
- url: https://www.entergy.com/wp-json
description: WordPress REST API root on Entergy's corporate site.
tags:
- name: wp
paths:
/batch/v1:
post:
operationId: post_batch_v1
summary: POST /batch/v1
description: WordPress REST API route /batch/v1 in namespace , as advertised by the live route index at https://www.entergy.com/wp-json/.
tags:
- wp
responses:
'200':
description: Success. Response body shape is defined by the WordPress REST controller for this route; the route index does not describe it, so it is not asserted here.
content:
application/json:
schema:
type: object
'401':
description: rest_forbidden - authentication required for this route.
content:
application/json:
schema:
$ref: '#/components/schemas/WPError'
'404':
description: rest_no_route - no route matched.
content:
application/json:
schema:
$ref: '#/components/schemas/WPError'
requestBody:
required: true
content:
application/json:
schema:
type: object
properties:
validation:
type: string
enum:
- require-all-validate
- normal
default: normal
requests:
type: array
items:
type: object
required:
- requests
components:
schemas:
WPError:
type: object
description: WordPress REST API error envelope, observed live on this host.
properties:
code:
type: string
examples:
- rest_forbidden
- rest_no_route
message:
type: string
examples:
- Sorry, you are not allowed to do that.
data:
type: object
properties:
status:
type: integer
examples:
- 401
- 404
securitySchemes:
applicationPassword:
type: http
scheme: basic
description: WordPress Application Passwords. The route index advertises the authorization endpoint at https://www.entergy.com/wp-admin/authorize-application.php. Write routes and privileged read routes require it; the public read routes do not.