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

# Get deposit addresses

> Returns the user's deposit addresses (EVM + Solana) and supported chains/tokens. Returns 202 while addresses are being prepared -- poll until 200.



## OpenAPI

````yaml /openapi/openapi.json get /execution/deposit-addresses
openapi: 3.0.2
info:
  title: AGG API
  version: 1.0.0
  description: >-
    Prediction market aggregator REST API — authentication, users, venue events,
    venue markets, orderbooks, charts, and execution workflows.
servers:
  - url: https://api.agg.market
    description: Production
  - url: https://api.staging.agg.market
    description: Staging
security: []
paths:
  /execution/deposit-addresses:
    get:
      tags:
        - Users
      summary: Get deposit addresses
      description: >-
        Returns the user's deposit addresses (EVM + Solana) and supported
        chains/tokens. Returns 202 while addresses are being prepared -- poll
        until 200.
      operationId: getDepositAddresses
      responses:
        '200':
          description: '200'
          content:
            application/json:
              schema:
                type: object
                required:
                  - ready
                  - evmAddress
                  - svmAddress
                  - supportedChains
                properties:
                  ready:
                    type: boolean
                    enum:
                      - true
                  evmAddress:
                    type: string
                  svmAddress:
                    type: string
                  supportedChains:
                    type: array
                    items:
                      type: object
                      required:
                        - chainId
                        - name
                        - tokens
                      properties:
                        chainId:
                          type: number
                        name:
                          type: string
                        tokens:
                          type: array
                          items:
                            type: object
                            required:
                              - symbol
                              - address
                              - decimals
                            properties:
                              symbol:
                                type: string
                              address:
                                type: string
                              decimals:
                                type: number
        '202':
          description: '202'
          content:
            application/json:
              schema:
                type: object
                required:
                  - ready
                properties:
                  ready:
                    type: boolean
                    enum:
                      - false
        '401':
          description: '401'
          content:
            application/json:
              schema:
                type: object
                required:
                  - message
                properties:
                  message:
                    type: string
        '403':
          description: '403'
          content:
            application/json:
              schema:
                type: object
                required:
                  - message
                properties:
                  message:
                    type: string
      security:
        - appId: []
          bearerAuth: []
components:
  securitySchemes:
    appId:
      type: apiKey
      in: header
      name: x-app-id
      description: Your application ID. Required for all app-tier and user-tier routes.
    bearerAuth:
      type: http
      scheme: bearer
      bearerFormat: JWT
      description: >-
        JWT access token returned by POST /auth/verify. Required for user-tier
        routes.

````