> ## 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.

# Start Onboarding

> Initiate session flow for onboarding a new user or agent wallet by sending an email verification code (OTP).

Initiate the connection flow for an agent or user wallet by delivering a 6-digit secure verification OTP code to the target email.


## OpenAPI

````yaml POST /v1/connect/start
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/connect/start:
    post:
      tags:
        - Connect API
      summary: Start Onboarding / OTP Flow
      description: >-
        Initiate session flow for onboarding a new user or agent wallet by
        sending an email verification code (OTP).
      parameters: []
      requestBody:
        required: true
        content:
          application/json:
            schema:
              type: object
              required:
                - email
              properties:
                email:
                  type: string
                  format: email
                  description: User's or agent's email address to verify
      responses:
        '200':
          description: OTP sent successfully
          content:
            application/json:
              schema:
                type: object
                properties:
                  success:
                    type: boolean
                  message:
                    type: string

````