Skip to main content

Trade

POST 

/otc/trade/

Trade on OTC market.

Request

Body

    base_asset stringrequired
    quote_asset stringrequired
    trade_type stringrequired

    Possible values: [buy, sell]

    email stringrequired
    destination_address stringrequired
    base_amount float
    quote_amount float
    refund_address string

Responses

The order representing the OTC swap.

Schema
    order object
    id string
    status string

    Possible values: [WAITING_FOR_DEPOSIT, DEPOSIT_RECEIVED, DEPOSIT_CONFIRMED, APPROVED, COMPLETED, CANCELED, EXPIRED, REJECTED, REFUNDED]

    email email
    refund_crypto_address string
    created_at string
    expires_at string
    confirmed_at string
    approved_at string
    completed_at string
    deposit_crypto_address string

    not null if from_asset is 'crypto'

    deposit_bank_address string

    not null if from_asset is 'fiat'

    deposit_bank_name string

    not null if from_asset is 'fiat'

    deposit_beneficiary string

    not null if from_asset is 'fiat'

    deposit_beneficiary_address string

    not null if from_asset is 'EUR'

    deposit_sepa_address string

    not null if from_asset is 'EUR'

    deposit_swift_address string

    not null if from_asset is 'fiat'

    deposit_swift_intermediary_address string

    not null if from_asset is 'fiat'

    from_amount float
    from_asset string
    to_asset string
    destination_type string

    Possible values: [crypto, sepa, swift, us]

    destination_crypto_address string
    destination_bank_address string
    destination_bank_name string
    destination_bank_account_number string
    destination_bank_routing_number string
    funding object
    txs undefined[]
    deposit_amount float
Loading...