openapi: 3.2.0 info: title: GRIN Therapeutics Content Oembed API version: wp/v2 summary: Anonymously readable WordPress REST content API behind grintherapeutics.com. description: The read-only content surface GRIN Therapeutics exposes at https://grintherapeutics.com/wp-json. contact: name: GRIN Therapeutics url: https://grintherapeutics.com/contact/ x-api-evangelist-provenance: Derived by the API Evangelist enrichment pipeline from the live WordPress REST route index at https://grintherapeutics.com/wp-json/ (138 routes, namespaces oembed/1.0, contact-form-7/v1, mailin/v1, wp/v2, wp-site-health/v1, wp-block-editor/v1, wp-abilities/v1) and verified against live anonymous responses on 2026-08-04. Generator reported WordPress 7.0.2. Every parameter below appears verbatim in the route index `args` for that endpoint. GRIN Therapeutics 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://grintherapeutics.com/wp-json description: Production content API tags: - name: o Embed description: oEmbed 1.0 provider endpoint for grintherapeutics.com URLs. paths: /oembed/1.0/embed: get: tags: - o Embed operationId: getOembed summary: Get an oEmbed response for a grintherapeutics.com URL parameters: - name: url in: query required: true description: The URL of the resource for which to fetch oEmbed data. schema: type: string format: uri - name: format in: query schema: type: string enum: - json - xml default: json - name: maxwidth in: query schema: type: integer default: 600 responses: '200': description: oEmbed 1.0 rich response content: application/json: schema: $ref: '#/components/schemas/Oembed' '404': $ref: '#/components/responses/NotFound' components: schemas: Error: type: object description: The WordPress REST error envelope. Note this is NOT RFC 9457 application/problem+json — it is served as application/json with code/message/data. required: - code - message - data properties: code: type: string description: Machine-readable error slug e.g. rest_post_invalid_id.: null message: type: string description: Human-readable message. data: type: object properties: status: type: integer params: type: object additionalProperties: type: string details: type: object Oembed: type: object properties: version: type: string const: '1.0' provider_name: type: string provider_url: type: string format: uri author_name: type: string author_url: type: string format: uri title: type: string type: type: string width: type: integer height: type: integer html: type: string responses: NotFound: description: The requested object does not exist. content: application/json: schema: $ref: '#/components/schemas/Error' examples: invalid-id: value: code: rest_post_invalid_id message: Invalid post ID. data: status: 404