openapi: 3.2.0
info:
title: Alloplex Biotherapeutics Content Pages API
version: wp/v2
summary: Anonymously readable WordPress REST content API behind alloplexbio.com.
description: The read-only content surface Alloplex Biotherapeutics exposes at https://alloplexbio.com/wp-json. Alloplex Biotherapeutics is a clinical-stage cellular immunotherapy company developing SUPLEXA, a non-engineered autologous multi-cellular therapy produced by its ENLIST cell-retraining platform; it runs no developer program and markets no product API. This document is an API Evangelist derivation of the WordPress `wp/v2` and `oembed/1.0` route index the site publishes at /wp-json/, restricted to the operations that were verified to return data anonymously on 2026-08-06. Write operations, `/wp/v2/users`, `/wp/v2/settings`, `/wp/v2/menus`, `/wp/v2/menu-items`, `/wp/v2/templates`, `/wp/v2/block-types`, `/wp/v2/font-families`, `/wp/v2/plugins`, `/wp/v2/themes`, `/wp/v2/widgets`, `/wp/v2/sidebars`, revisions, autosaves, the `mcp` namespace, the `wp-abilities/v1` namespace, the `wordfence/v1` namespace, the `rankmath/v1` namespace, the `post-duplicator/v1` namespace, the `wpe_sign_on_plugin/v1` namespace, the `wpe/cache-plugin/v1` namespace, the `wp-site-health/v1` namespace and `wp-block-editor/v1` all require authentication and are deliberately excluded — see x-api-evangelist-provenance.
contact:
name: Alloplex Biotherapeutics
url: https://alloplexbio.com/contact/
x-api-evangelist-provenance: Derived by the API Evangelist enrichment pipeline from the live WordPress REST route index at https://alloplexbio.com/wp-json/ (219 routes across the namespaces oembed/1.0, wpe/cache-plugin/v1, wpe_sign_on_plugin/v1, post-duplicator/v1, MtphrPostDuplicatorSettings/v1, rankmath/v1, wordfence/v1, mcp, wp/v2, wp-site-health/v1, wp-block-editor/v1 and wp-abilities/v1) and verified against live anonymous responses on 2026-08-06. Every parameter below appears verbatim in the route index `args` for that endpoint, and every operation modelled here returned 200 without credentials. Alloplex Biotherapeutics publishes no OpenAPI, no developer documentation and no API reference for this surface; the humanURL in apis.yml points at the upstream WordPress REST handbook that defines the wp/v2 contract. Nothing here was obtained with credentials.
servers:
- url: https://alloplexbio.com/wp-json
description: Production content API
tags:
- name: pages
description: Corporate pages (19 published at harvest time) — About, Investors, Scientists, Information for Patients, Media and Press, Media Kit, FAQ, Releases and Updates, Terms of use, Privacy Policy, Contact, and the shareholder-portal pages.
paths:
/wp/v2/pages:
get:
tags:
- pages
operationId: listPages
summary: List pages
description: Lists published pages — 19 at harvest time. All are top-level (parent 0) on this deployment. Note that the FAQ page returns an empty content.rendered because its body is authored in page-builder post meta that WordPress does not project into REST.
parameters:
- $ref: '#/components/parameters/Context'
- $ref: '#/components/parameters/Page'
- $ref: '#/components/parameters/PerPage'
- $ref: '#/components/parameters/Search'
- $ref: '#/components/parameters/After'
- $ref: '#/components/parameters/Before'
- $ref: '#/components/parameters/ModifiedAfter'
- $ref: '#/components/parameters/ModifiedBefore'
- $ref: '#/components/parameters/Exclude'
- $ref: '#/components/parameters/Include'
- $ref: '#/components/parameters/Offset'
- $ref: '#/components/parameters/Order'
- $ref: '#/components/parameters/Slug'
- $ref: '#/components/parameters/Fields'
- name: orderby
in: query
description: Sort collection by post attribute.
schema:
type: string
enum:
- author
- date
- id
- include
- modified
- parent
- relevance
- slug
- include_slugs
- title
- menu_order
default: date
- name: parent
in: query
description: Limit result set to items with particular parent ids.
schema:
type: array
items:
type: integer
- name: parent_exclude
in: query
description: Limit result set to all items except those of a particular parent id.
schema:
type: array
items:
type: integer
- name: menu_order
in: query
description: Limit result set to posts with a specific menu_order value.
schema:
type: integer
- name: status
in: query
description: Limit result set to pages assigned one or more statuses. Anonymous callers may only request `publish`.
schema:
type: array
items:
type: string
enum:
- publish
default:
- publish
responses:
'200':
description: A list of pages
headers:
X-WP-Total:
description: Total number of pages matching the query.
schema:
type: integer
examples:
- 19
X-WP-TotalPages:
description: Total number of result pages.
schema:
type: integer
content:
application/json:
schema:
type: array
items:
$ref: '#/components/schemas/Page'
'400':
$ref: '#/components/responses/BadRequest'
/wp/v2/pages/{id}:
get:
tags:
- pages
operationId: getPage
summary: Get a page
description: Retrieves a single published page by numeric id.
parameters:
- name: id
in: path
required: true
description: Unique identifier for the page.
schema:
type: integer
examples:
- 14
- $ref: '#/components/parameters/Context'
- $ref: '#/components/parameters/Password'
- $ref: '#/components/parameters/Fields'
responses:
'200':
description: A page
content:
application/json:
schema:
$ref: '#/components/schemas/Page'
'404':
$ref: '#/components/responses/NotFound'
components:
schemas:
Links:
type: object
description: HAL-style hypermedia links. Every collection and item response carries these.
additionalProperties:
type: array
items:
type: object
properties:
href:
type: string
format: uri
embeddable:
type: boolean
name:
type: string
templated:
type: boolean
taxonomy:
type: string
targetHints:
type: object
additionalProperties: true
RenderedText:
type: object
description: A rendered-HTML text field.
properties:
rendered:
type: string
description: HTML for the field, transformed for display.
protected:
type: boolean
description: Whether the field is protected with a password.
required:
- rendered
Page:
type: object
description: A published corporate page.
properties:
id:
type: integer
description: Unique identifier for the page.
examples:
- 14
date:
type:
- string
- 'null'
format: date-time
date_gmt:
type:
- string
- 'null'
format: date-time
guid:
$ref: '#/components/schemas/RenderedText'
modified:
type: string
format: date-time
modified_gmt:
type: string
format: date-time
slug:
type: string
examples:
- about
status:
type: string
examples:
- publish
type:
type: string
examples:
- page
link:
type: string
format: uri
title:
$ref: '#/components/schemas/RenderedText'
content:
allOf:
- $ref: '#/components/schemas/RenderedText'
description: The page body. Populated on most pages, but an EMPTY STRING on pages whose body is authored entirely in page-builder post meta (the FAQ page is the known case on this deployment).
excerpt:
$ref: '#/components/schemas/RenderedText'
author:
type: integer
featured_media:
type: integer
parent:
type: integer
description: The id for the parent of the page. All pages are top-level (0) on this deployment.
menu_order:
type: integer
description: The order of the page in relation to other pages.
comment_status:
type: string
enum:
- open
- closed
ping_status:
type: string
enum:
- open
- closed
template:
type: string
meta:
type: object
additionalProperties: true
acf:
type:
- object
- array
class_list:
type: array
items:
type: string
_links:
$ref: '#/components/schemas/Links'
required:
- id
- slug
- type
- link
- title
Error:
type: object
description: The WordPress REST error envelope. This is NOT RFC 9457 problem+json — it is a bespoke object served as application/json, with the HTTP status duplicated inside `data.status`.
properties:
code:
type: string
description: A machine-readable error code.
examples:
- rest_post_invalid_id
- rest_forbidden
message:
type: string
description: A human-readable error message.
data:
type: object
properties:
status:
type: integer
description: The HTTP status code, repeated inside the body.
examples:
- 404
additionalProperties: true
required:
- code
- message
parameters:
Search:
name: search
in: query
description: Limit results to those matching a string.
schema:
type: string
Password:
name: password
in: query
description: The password for the post if it is password protected.
schema:
type: string
ModifiedBefore:
name: modified_before
in: query
description: Limit response to posts modified before a given ISO8601 compliant date.
schema:
type: string
format: date-time
Fields:
name: _fields
in: query
description: Limit the response to specific top-level fields. A WordPress-wide sparse-fieldset control — the single most effective way to reduce payload size on this API.
schema:
type: array
items:
type: string
examples:
- - id
- slug
- title
- link
After:
name: after
in: query
description: Limit response to posts published after a given ISO8601 compliant date.
schema:
type: string
format: date-time
Offset:
name: offset
in: query
description: Offset the result set by a specific number of items.
schema:
type: integer
ModifiedAfter:
name: modified_after
in: query
description: Limit response to posts modified after a given ISO8601 compliant date.
schema:
type: string
format: date-time
Page:
name: page
in: query
description: Current page of the collection.
schema:
type: integer
minimum: 1
default: 1
Before:
name: before
in: query
description: Limit response to posts published before a given ISO8601 compliant date.
schema:
type: string
format: date-time
PerPage:
name: per_page
in: query
description: Maximum number of items to be returned in result set.
schema:
type: integer
minimum: 1
maximum: 100
default: 10
Context:
name: context
in: query
description: Scope under which the request is made; determines fields present in response. Anonymous callers may use `view` and `embed` only.
schema:
type: string
enum:
- view
- embed
default: view
Exclude:
name: exclude
in: query
description: Ensure result set excludes specific ids.
schema:
type: array
items:
type: integer
Order:
name: order
in: query
description: Order sort attribute ascending or descending.
schema:
type: string
enum:
- asc
- desc
default: desc
Slug:
name: slug
in: query
description: Limit result set to items with one or more specific slugs.
schema:
type: array
items:
type: string
Include:
name: include
in: query
description: Limit result set to specific ids.
schema:
type: array
items:
type: integer
responses:
BadRequest:
description: Invalid parameter
content:
application/json:
schema:
$ref: '#/components/schemas/Error'
NotFound:
description: Resource not found
content:
application/json:
schema:
$ref: '#/components/schemas/Error'