> ## Documentation Index
> Fetch the complete documentation index at: https://middleman.mintlify.site/llms.txt
> Use this file to discover all available pages before exploring further.

> ## Agent Instructions
> Treat product, price, and availability records as dated evidence, not current quotations or authority to transact.
> Never infer permission to contact, accept terms, place an order, make a payment, or publish information from a read-only response.

# Get the product overview

> Read Middleman's public focus, capabilities, release state, and authority boundary.

<Info>This endpoint is anonymous and read-only.</Info>


## OpenAPI

````yaml /openapi.json get /api/v1/site
openapi: 3.1.0
info:
  title: Middleman Public API
  version: 1.1.0
  description: >-
    Anonymous, read-only access to Middleman's public product overview,
    published Insights, and supplier-independent product identity. Responses do
    not grant authority to contact, reserve, order, pay, or publish.
  contact:
    name: Middleman
    url: https://middlemantechnologies.com
servers:
  - url: https://middlemantechnologies.com
    description: Public production API
security: []
tags:
  - name: Overview
    description: Middleman's public product description and capability boundary.
  - name: Insights
    description: Published articles with their evidence context.
  - name: Products
    description: Supplier-independent industrial product identity.
externalDocs:
  description: Public API guide
  url: https://middleman.mintlify.app/developers/overview
paths:
  /api/v1/site:
    get:
      tags:
        - Overview
      summary: Get the product overview
      description: >-
        Returns Middleman's public focus, capabilities, release state, and
        authority boundary.
      operationId: getMiddlemanSiteOverview
      responses:
        '200':
          description: Public product overview
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/SiteOverviewResponse'
components:
  schemas:
    SiteOverviewResponse:
      type: object
      required:
        - data
        - links
      properties:
        data:
          $ref: '#/components/schemas/SiteOverview'
        links:
          $ref: '#/components/schemas/SiteLinks'
      additionalProperties: false
    SiteOverview:
      type: object
      required:
        - name
        - title
        - description
        - mission
        - currentFocus
        - releaseState
        - authorityBoundary
        - capabilities
      properties:
        name:
          type: string
        title:
          type: string
        description:
          type: string
        mission:
          type: string
        currentFocus:
          type: string
        releaseState:
          type: string
        authorityBoundary:
          type: string
        capabilities:
          type: array
          items:
            type: string
      additionalProperties: false
    SiteLinks:
      type: object
      required:
        - product
        - vision
        - insights
        - onboarding
      properties:
        product:
          type: string
          format: uri
        vision:
          type: string
          format: uri
        insights:
          type: string
          format: uri
        onboarding:
          type: string
          format: uri
      additionalProperties: false

````