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

> ## Agent Instructions
> Reconify's API reference is read-only for customer data. Do not invent endpoints or authentication behavior beyond the OpenAPI contract.
> The public OpenAPI document contains only the external /v1 contract. Dashboard business routes are intentionally excluded.

# Get API information

> Returns public API metadata without authentication.



## OpenAPI

````yaml /openapi/reconify.openapi.json get /v1
openapi: 3.1.0
info:
  description: Public event ingestion and issue operations for Reconify.
  title: Reconify API
  version: 1.0.0
servers:
  - description: Reconify API root
    url: https://api.reconifyhq.com
security: []
tags:
  - description: Submit events through the public v1 ingestion API.
    name: Event Ingestion API
  - description: Public API metadata and health checks.
    name: API Metadata
  - description: Read received events and evidence linked to issues.
    name: Event Reads
  - description: Discover and coordinate evidence-backed monitoring issues.
    name: Issue Operations
  - description: Read organization details and assignable member IDs.
    name: Organization
paths:
  /v1:
    get:
      tags:
        - API Metadata
      summary: Get API information
      description: Returns public API metadata without authentication.
      operationId: get-api-info
      responses:
        '200':
          content:
            application/json:
              example:
                documentation_url: https://docs.reconifyhq.com
                name: Reconify API
                status_url: https://status.reconifyhq.com
                version: v1
              schema:
                $ref: '#/components/schemas/APIInfo'
          description: OK
components:
  schemas:
    APIInfo:
      properties:
        documentation_url:
          description: Developer documentation URL.
          type: string
        name:
          description: API name.
          type: string
        status_url:
          description: Public service status URL.
          type: string
        version:
          description: Public API version.
          type: string
      required:
        - name
        - version
        - documentation_url
        - status_url
      type: object

````