Burger Singh SEO Metadata API

Public Yoast SEO head endpoint returning the rendered SEO/head metadata and its schema.org JSON-LD graph for any burgersinghonline.com URL.

OpenAPI Specification

burger-singh-seo-api-openapi.yml Raw ↑
openapi: 3.2.0
info:
  title: Burger Singh Metadata SEO API
  version: yoast/v1
  summary: Rendered SEO head metadata and JSON-LD schema graph for any site URL.
  description: The Yoast SEO head endpoint on burgersinghonline.com returns, for any URL on the site, the rendered head markup and the structured schema.org JSON-LD graph behind it - canonical URL, title, Open Graph and Twitter card metadata, and the Organization / WebSite / WebPage node graph. Useful to an agent that needs the site's own structured description of a page without parsing the HTML.
  contact:
    name: Burger Singh
    url: https://www.burgersinghonline.com/feedback/
  license:
    name: Site content - all rights reserved, see Terms and Conditions
    url: https://www.burgersinghonline.com/terms-and-conditions/
  x-apis-io-provenance:
    method: derived
    source: https://www.burgersinghonline.com/wp-json/
    derived_on: '2026-08-08'
    note: Route enumerated from the live wp-json discovery document (yoast/v1 namespace, 42 routes); /yoast/v1/get_head was probed anonymously against the /menu/ page and returned HTTP 200 with rendered head markup on 2026-08-08. Yoast SEO v26.6 was reported in the response.
servers:
- url: https://www.burgersinghonline.com/wp-json
  description: Production
tags:
- name: SEO
  description: Yoast SEO head metadata for Burger Singh site URLs.
paths:
  /yoast/v1/get_head:
    get:
      tags:
      - SEO
      operationId: getSeoHead
      summary: Get rendered SEO head metadata for a URL
      description: Returns the rendered Yoast SEO head markup for the given site URL, along with the parsed metadata and its schema.org JSON-LD graph.
      parameters:
      - name: url
        in: query
        required: true
        description: Absolute URL on burgersinghonline.com to render SEO head metadata for.
        schema:
          type: string
          format: uri
      responses:
        '200':
          description: Rendered SEO head metadata.
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/SeoHead'
        '400':
          $ref: '#/components/responses/InvalidParam'
        '404':
          $ref: '#/components/responses/NotFound'
components:
  schemas:
    Error:
      type: object
      description: The WordPress REST error envelope, verified live on this host. This is NOT RFC 9457 application/problem+json - it is served as application/json with a WordPress-specific shape.
      properties:
        code:
          type: string
        message:
          type: string
        data:
          type: object
          properties:
            status:
              type: integer
            params:
              type: object
              additionalProperties:
                type: string
            details:
              type: object
              additionalProperties: true
          required:
          - status
      required:
      - code
      - message
      - data
    SeoHead:
      type: object
      description: Yoast SEO head payload, verified live on 2026-08-08.
      properties:
        html:
          type: string
          description: Rendered head markup including title, canonical, robots, Open Graph and Twitter tags.
        json:
          type: object
          additionalProperties: true
          description: Parsed head metadata including the schema.org JSON-LD graph.
      required:
      - html
  responses:
    NotFound:
      description: The requested object does not exist.
      content:
        application/json:
          schema:
            $ref: '#/components/schemas/Error'
          example:
            code: rest_post_invalid_id
            message: Invalid post ID.
            data:
              status: 404
    InvalidParam:
      description: One or more query parameters failed validation.
      content:
        application/json:
          schema:
            $ref: '#/components/schemas/Error'
          example:
            code: rest_invalid_param
            message: 'Invalid parameter(s): per_page'
            data:
              status: 400
              params:
                per_page: per_page must be between 1 (inclusive) and 100 (inclusive)