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

# Get agent manifest

> Get the SiteGPT agent manifest.

No authentication is required.

Responds with the raw JSON document, not the { ok, data, meta } envelope.



## OpenAPI

````yaml https://sitegpt.ai/api/v2/openapi.json get /.well-known/sitegpt-agent.json
openapi: 3.1.0
info:
  title: SiteGPT Agent API
  version: 2.0.0
  description: >-
    Agent-facing API for managing SiteGPT chatbots, dashboard summaries,
    appearance media, knowledge, settings, conversations, leads, members,
    account profiles, usage, billing reads, and API tokens.
servers:
  - url: https://sitegpt.ai
security:
  - bearerAuth: []
tags:
  - name: Discovery
  - name: Onboarding
  - name: Account
  - name: Billing
  - name: Tokens
  - name: Chatbots
  - name: Knowledge
  - name: Knowledge Sync Jobs
  - name: Knowledge Sources
  - name: Custom Responses
  - name: Personas
  - name: Instructions
  - name: Settings
  - name: Conversation Starters
  - name: Conversation Followups
  - name: Members
  - name: Leads
  - name: Conversations
  - name: Messages
  - name: Tags
paths:
  /.well-known/sitegpt-agent.json:
    get:
      tags:
        - Discovery
      summary: Get agent manifest
      description: >-
        Get the SiteGPT agent manifest.


        No authentication is required.


        Responds with the raw JSON document, not the { ok, data, meta }
        envelope.
      operationId: getAgentManifest
      responses:
        '200':
          description: >-
            The raw JSON document itself — these discovery endpoints do not use
            the { ok, data, meta } envelope.
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/GenericObject'
                description: The SiteGPT agent manifest document.
        '400':
          $ref: '#/components/responses/AgentError'
        '401':
          $ref: '#/components/responses/AgentError'
        '403':
          $ref: '#/components/responses/AgentError'
        '404':
          $ref: '#/components/responses/AgentError'
        '405':
          $ref: '#/components/responses/AgentError'
      security: []
components:
  schemas:
    GenericObject:
      type: object
      additionalProperties: true
    AgentError:
      type: object
      required:
        - ok
        - error
        - meta
      properties:
        ok:
          type: boolean
          const: false
        error:
          type: object
          required:
            - code
            - message
          properties:
            code:
              type: string
            message:
              type: string
            details: {}
          additionalProperties: false
        meta:
          type: object
          required:
            - requestId
          properties:
            requestId:
              type: string
          additionalProperties: true
      additionalProperties: false
  responses:
    AgentError:
      description: SiteGPT agent API error response.
      content:
        application/json:
          schema:
            $ref: '#/components/schemas/AgentError'
  securitySchemes:
    bearerAuth:
      type: http
      scheme: bearer
      bearerFormat: SiteGPT API token

````