openapi: 3.1.0 info: title: iECURE oEmbed API version: wp/v2 description: 'oEmbed 1.0 provider endpoint for iecure.com URLs, returning JSON or XML rich/link responses. Derived by API Evangelist from the live WordPress REST route index published at https://iecure.com/wp-json/ and from anonymous responses observed on 2026-08-22. iECURE is a clinical-stage genetic-medicines company and runs no developer program; this is the content API its own website is built on, not a product API. Only routes that returned 200 without credentials are described here - administrative and plugin routes that answered 401 are deliberately excluded.' contact: name: iECURE url: https://iecure.com/contact/ email: info@iecure.com x-source: https://iecure.com/wp-json/ x-harvested: '2026-08-22' x-upstream-contract: https://developer.wordpress.org/rest-api/ servers: - url: https://iecure.com/wp-json description: iECURE WordPress REST API tags: - name: oembed description: oEmbed 1.0 provider endpoint for iecure.com URLs, returning JSON or XML rich/link responses. paths: /oembed/1.0/embed: get: operationId: getOembed summary: getOembed description: GET https://iecure.com/wp-json/oembed/1.0/embed - observed anonymously reachable on 2026-08-22. tags: - oembed responses: '200': description: Success. content: application/json: schema: type: object '400': description: rest_invalid_param - a query parameter failed validation. content: application/json: schema: $ref: '#/components/schemas/ErrorResponse' '404': description: rest_no_route or rest_post_invalid_id. content: application/json: schema: $ref: '#/components/schemas/ErrorResponse' parameters: - name: url in: query required: true schema: type: string format: uri description: The URL of the resource for which to fetch oEmbed data. - name: format in: query required: false schema: type: string default: json - name: maxwidth in: query required: false schema: type: string default: 600 components: schemas: ErrorResponse: type: object description: The WordPress REST error envelope. Not RFC 9457 problem details. required: - code - message - data properties: code: type: string description: Machine-readable error code - the stable discriminator. message: type: string description: Human-readable message, localized to the site language. data: type: object properties: status: type: integer params: type: object description: Per-parameter messages. Present only on rest_invalid_param. details: type: object description: Per-parameter structured detail with a nested code.