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

# Track Agent Position

> Returns the authenticated agent's current position in the vault. Includes the number of shares held, their current USDC value, and importantly, the `lockExpiresAt` timestamp that indicates when MEV cooldowns end.

Check the agent's current aUSDC balance, USDC value equivalent, and active withdrawal lock (MEV cooldown) status.


## OpenAPI

````yaml GET /v1/actions/yield/balance
openapi: 3.1.0
info:
  title: Aegis Secure API
  description: >-
    Zero-trust API for Developer-Controlled Wallets (DCW) and programmatic
    Policy Engine controls.
  license:
    name: MIT
  version: 1.0.0
servers:
  - url: https://api.aegisintent.xyz
    description: Production API Server
security: []
paths:
  /v1/actions/yield/balance:
    get:
      tags:
        - Actions API
        - Yield
      summary: Track Agent Vault Position
      description: >-
        Returns the authenticated agent's current position in the vault.
        Includes the number of shares held, their current USDC value, and
        importantly, the `lockExpiresAt` timestamp that indicates when MEV
        cooldowns end.
      parameters:
        - name: X-Aegis-Email
          in: header
          required: true
          schema:
            type: string
          description: Agent email address
      responses:
        '200':
          description: Agent Position
          content:
            application/json:
              schema:
                type: object
                properties:
                  success:
                    type: boolean
                    example: true
                  balance:
                    type: object
                    properties:
                      vaultAddress:
                        type: string
                      shares:
                        type: string
                      usdcValue:
                        type: string
                      lockExpiresAt:
                        type: string
                        nullable: true
      security:
        - BearerAuth: []
        - AegisEmail: []
components:
  securitySchemes:
    BearerAuth:
      type: http
      scheme: bearer
      bearerFormat: JWT
      description: Provide raw API session token issued by `/v1/connect/complete`
    AegisEmail:
      type: apiKey
      in: header
      name: X-Aegis-Email
      description: Dual-header token holder identity confirmation

````