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

# Service welcome

> Service welcome message with pointers to docs and available API versions. No authentication.



## OpenAPI

````yaml /openapi.json get /
openapi: 3.1.0
info:
  title: Endstate API
  version: v1
  description: Endstate developer API for chip verification and ownership workflows.
servers:
  - url: https://api2.endstate.io
    description: Production
security: []
paths:
  /:
    get:
      tags:
        - Service
      summary: Service welcome
      description: >-
        Service welcome message with pointers to docs and available API
        versions. No authentication.
      responses:
        '200':
          description: Service info
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/WelcomeResponse'
              example:
                service: endstate-api
                docs: https://docs.endstate.io
                api_versions:
                  - v1
                health: /health
components:
  schemas:
    WelcomeResponse:
      type: object
      properties:
        service:
          type: string
          enum:
            - endstate-api
        docs:
          type: string
          format: uri
        api_versions:
          type: array
          items:
            type: string
        health:
          type: string
      required:
        - service
        - docs
        - api_versions
        - health
      example:
        service: endstate-api
        docs: https://docs.endstate.io
        api_versions:
          - v1
        health: /health

````