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

# Quote withdrawable amount

> Returns the maximum deliverable amount for a token and destination chain without creating a withdrawal.



## OpenAPI

````yaml /openapi/openapi.json post /execution/withdrawable/quote
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/withdrawable/quote:
    post:
      tags:
        - Execution
      summary: Quote withdrawable amount
      description: >-
        Returns the maximum deliverable amount for a token and destination chain
        without creating a withdrawal.
      operationId: getWithdrawalQuote
      requestBody:
        required: true
        content:
          application/json:
            schema:
              type: object
              required:
                - tokenSymbol
                - destinationChainId
              properties:
                tokenSymbol:
                  description: Stable-coin symbol the withdrawal is denominated in.
                  type: string
                  enum:
                    - USDC
                    - USDC.e
                    - USDT
                destinationChainId:
                  minimum: 1
                  description: Chain ID where the recipient would receive funds.
                  type: integer
      responses:
        '200':
          description: '200'
          content:
            application/json:
              schema:
                type: object
                required:
                  - tokenSymbol
                  - destinationChainId
                  - maxDeliverableRaw
                  - rawBalanceRaw
                  - decimals
                properties:
                  tokenSymbol:
                    description: Stable-coin symbol the withdrawal is denominated in.
                    type: string
                    enum:
                      - USDC
                      - USDC.e
                      - USDT
                  destinationChainId:
                    minimum: 1
                    type: integer
                  maxDeliverableRaw:
                    pattern: ^[0-9]+$
                    description: >-
                      Maximum amount the withdrawal planner can deliver, in
                      destination decimals.
                    type: string
                  rawBalanceRaw:
                    pattern: ^[0-9]+$
                    description: >-
                      Eligible raw balance before dust floors and route fees, in
                      destination decimals.
                    type: string
                  decimals:
                    minimum: 0
                    maximum: 36
                    type: integer
        '400':
          description: '400'
          content:
            application/json:
              schema:
                type: object
                required:
                  - message
                properties:
                  message:
                    type: string
        '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.

````