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

# Get Withdrawal

> Retrieves details of a specific withdrawal



## OpenAPI

````yaml GET /api/v0/withdrawals/{id}
openapi: 3.1.0
info:
  title: Crown API & Webhooks
  version: 1.0.0
  description: >-
    Open API 3 docs for Crown API


    Webhook events that Crown will POST to your configured endpoint URL. All
    webhooks expect a 200 OK response. Payloads use kebab-case for all keys to
    match the Crown API conventions.
servers:
  - url: https://app.crown-brlv.com
    description: Production server
security: []
paths:
  /api/v0/withdrawals/{id}:
    get:
      summary: Get a withdrawal by ID
      description: Retrieves details of a specific withdrawal
      parameters:
        - in: path
          name: id
          required: true
          schema:
            type: string
            format: uuid
      responses:
        '200':
          description: Withdrawal retrieved successfully
          content:
            application/json:
              schema:
                oneOf:
                  - type: object
                    properties:
                      id:
                        type: string
                        format: uuid
                        example: 660e8400-e29b-41d4-a716-446655440001
                      asset:
                        enum:
                          - fiat/brl
                        example: fiat/brl
                      amount:
                        type: string
                        format: decimal
                        example: '100.50'
                      method:
                        enum:
                          - pix
                        example: pix
                      state:
                        type: string
                        enum:
                          - created
                          - rolled-back
                          - completed
                          - processing
                        example: created
                      created-at:
                        type: string
                        example: '2025-03-06T10:30:00Z'
                        format: date-time
                      state-updated-at:
                        type: string
                        example: '2025-03-06T10:30:00Z'
                        format: date-time
                    additionalProperties: false
                    required:
                      - id
                      - asset
                      - amount
                      - method
                      - state
                      - created-at
                      - state-updated-at
                    description: BRL PIX withdrawal
                    title: PIX Withdrawal
                  - type: object
                    properties:
                      id:
                        type: string
                        format: uuid
                        example: 660e8400-e29b-41d4-a716-446655440002
                      asset:
                        enum:
                          - fiat/brl
                        example: fiat/brl
                      amount:
                        type: string
                        format: decimal
                        example: '1500.00'
                      method:
                        enum:
                          - ted
                        example: ted
                      state:
                        type: string
                        enum:
                          - created
                          - rolled-back
                          - completed
                          - processing
                        example: created
                      created-at:
                        type: string
                        example: '2025-03-06T10:30:00Z'
                        format: date-time
                      state-updated-at:
                        type: string
                        example: '2025-03-06T10:30:00Z'
                        format: date-time
                    additionalProperties: false
                    required:
                      - id
                      - asset
                      - amount
                      - method
                      - state
                      - created-at
                      - state-updated-at
                    description: BRL TED withdrawal
                    title: TED Withdrawal
                  - type: object
                    properties:
                      id:
                        type: string
                        format: uuid
                        example: 660e8400-e29b-41d4-a716-446655440003
                      asset:
                        type: string
                        enum:
                          - eth-mainnet/usdc
                          - eth-base/usdc
                        description: Stablecoin asset
                        example: eth-base/usdc
                      amount:
                        type: string
                        format: decimal
                        example: '100.500000000000000000'
                      state:
                        type: string
                        enum:
                          - created
                          - rolled-back
                          - completed
                          - processing
                        example: created
                      created-at:
                        type: string
                        example: '2025-03-06T10:30:00Z'
                        format: date-time
                      state-updated-at:
                        type: string
                        example: '2025-03-06T10:30:00Z'
                        format: date-time
                      destination-wallet-address:
                        type: string
                        description: Destination wallet address
                        example: '0x742d35Cc6634C0532925a3b844Bc454e4438f44e'
                      tx-hash:
                        type: string
                        description: Transaction hash for completed withdrawal
                        example: 0x1234567890abcdef...
                    additionalProperties: false
                    required:
                      - id
                      - asset
                      - amount
                      - state
                      - created-at
                      - state-updated-at
                    description: Crypto stablecoin withdrawal
                    title: Stablecoin Withdrawal
        '400':
          description: Bad request - Invalid input parameters
          content:
            application/json:
              schema:
                type: object
                properties:
                  error:
                    type: object
                    properties:
                      type:
                        type: string
                      message:
                        type: string
                      code:
                        type: string
                    additionalProperties: false
                    required:
                      - type
                      - message
                      - code
                    description: Bad request error details
                additionalProperties: false
                required:
                  - error
        '403':
          description: Forbidden - Access denied
          content:
            application/json:
              schema:
                type: object
                properties:
                  error:
                    type: object
                    properties:
                      type:
                        type: string
                      message:
                        type: string
                      code:
                        type: string
                    additionalProperties: false
                    required:
                      - type
                      - message
                      - code
                    description: Forbidden access error details
                additionalProperties: false
                required:
                  - error
        '404':
          description: Not found - Resource does not exist
          content:
            application/json:
              schema:
                type: object
                properties:
                  error:
                    type: object
                    properties:
                      type:
                        type: string
                      message:
                        type: string
                      code:
                        type: string
                    additionalProperties: false
                    required:
                      - type
                      - message
                      - code
                    description: Resource not found error details
                additionalProperties: false
                required:
                  - error
        '422':
          description: Unprocessable entity - Validation failed
          content:
            application/json:
              schema:
                type: object
                properties:
                  error:
                    type: object
                    properties:
                      type:
                        type: string
                      message:
                        type: string
                      code:
                        type: string
                    additionalProperties: false
                    required:
                      - type
                      - message
                      - code
                    description: Validation error details
                additionalProperties: false
                required:
                  - error

````