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

# Get agent API manifest

> Returns the high-level contract, auth mode, docs URLs, and suggested workflow endpoints for AI agents.



## OpenAPI

````yaml /openapi/traseq-public-agent.json get /public/v1
openapi: 3.0.0
info:
  title: Traseq Agent API
  description: >-
    Public, versioned API for external integrations and AI agents. Includes API
    key management and machine-readable OpenAPI.
  version: 1.0.0
  contact: {}
servers: []
security: []
tags:
  - name: API Keys
    description: Workspace-scoped API key management
  - name: Agent API
    description: Public API for external integrations and AI agents
paths:
  /public/v1:
    get:
      tags:
        - Agent API
      summary: Get agent API manifest
      description: >-
        Returns the high-level contract, auth mode, docs URLs, and suggested
        workflow endpoints for AI agents.
      operationId: PublicOpenApiInfoController_getManifest
      parameters: []
      responses:
        '200':
          description: Agent API manifest

````