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

# Auth status

> Returns the authenticated API agent id and its public deposit addresses. Use this after registration to discover your wallet address.



## OpenAPI

````yaml GET /v1/auth/status
openapi: 3.1.0
info:
  title: Docent API
  description: >-
    REST API for programmatic trading on Hyperliquid and Polymarket via Docent.
    Create API agents, fund a dedicated wallet, place trades, check balances,
    and move funds between venues with API keys.
  version: 1.0.0
  contact:
    email: support@trydocent.com
servers:
  - url: https://api.trydocent.com
    description: Production
security:
  - bearerAuth: []
tags:
  - name: Auth
    description: Registration, key management, and auth status
  - name: Balances
    description: Unified balance across all trading venues
  - name: Positions
    description: Open positions on Hyperliquid and Polymarket
  - name: Markets
    description: Market metadata and search
  - name: Orders
    description: Place orders on Hyperliquid perpetuals, spot, and Polymarket
  - name: Transfers
    description: Move funds between trading venues
  - name: Actions
    description: Poll workflow execution status
  - name: Strategies
    description: Coming soon. Reserved for future strategy endpoints.
paths:
  /v1/auth/status:
    get:
      tags:
        - Auth
      summary: Get auth status
      description: >-
        Returns the authenticated API agent id and its public deposit addresses.
        Use this after registration to discover your wallet address.
      responses:
        '200':
          description: Auth status
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/AuthStatus'
components:
  schemas:
    AuthStatus:
      type: object
      required:
        - agentId
        - addresses
      properties:
        agentId:
          type: string
          description: Authenticated API agent ID
        addresses:
          type: object
          required:
            - ethereum
          properties:
            ethereum:
              type: string
              description: Ethereum wallet address for funding and trading
              example: 0x1234...abcd
  securitySchemes:
    bearerAuth:
      type: http
      scheme: bearer
      description: >-
        API key in the format `dk_live_...`. Pass as `Authorization: Bearer
        dk_live_...`

````