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

# Agent Adopt Info

> Public, token-keyed context for the adopt page: WHICH agent set this account up,
where it runs, and where to find the takeover code. Recognition / anti-phishing only.
NEVER returns the code itself; the unguessable token is the gate.



## OpenAPI

````yaml /openapi.json get /v1/agents/adopt-info
openapi: 3.1.0
info:
  title: Universal Document AI API
  description: AI-powered document editing with multi-tenant organization support
  version: 2.0.0
servers: []
security: []
paths:
  /v1/agents/adopt-info:
    get:
      tags:
        - agents
      summary: Agent Adopt Info
      description: >-
        Public, token-keyed context for the adopt page: WHICH agent set this
        account up,

        where it runs, and where to find the takeover code. Recognition /
        anti-phishing only.

        NEVER returns the code itself; the unguessable token is the gate.
      operationId: agent_adopt_info_v1_agents_adopt_info_get
      parameters:
        - name: token
          in: query
          required: true
          schema:
            type: string
            title: Token
      responses:
        '200':
          description: Successful Response
          content:
            application/json:
              schema: {}
        '422':
          description: Validation Error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/HTTPValidationError'
components:
  schemas:
    HTTPValidationError:
      properties:
        detail:
          items:
            $ref: '#/components/schemas/ValidationError'
          type: array
          title: Detail
      type: object
      title: HTTPValidationError
    ValidationError:
      properties:
        loc:
          items:
            anyOf:
              - type: string
              - type: integer
          type: array
          title: Location
        msg:
          type: string
          title: Message
        type:
          type: string
          title: Error Type
      type: object
      required:
        - loc
        - msg
        - type
      title: ValidationError

````