Skip to main content

List Withdrawals

GET 

/v1/wallet/withdrawals

List your withdrawals. Only crypto assets (no FIATs).

Requires authentication.

Request

Query Parameters

    asset string

    Asset ID.

    network string

    Asset network.

    address string

    Your asset address.

    destination_tag string

    A complementary information used in some networks.

    memo string

    A complementary information used in some networks.

    status string

    Possible values: [PENDING, COMPLETED, CANCELED, CANCELED_SYSTEM]

    Status of the progress of deposit processing.

    created_at string

    Timestamp of when this object was created.

    status_updated_at string

    Timestamp of when this object status was updated.

    cursor string

    A reference to the server indicating the next set of objects to be returned. It is sent back in every response were the number of objects returned is bigger than the limit.

    limit integer

    Possible values: non-empty and <= 200 characters, >= 1 and <= 200

    Default value: 20

    Max number of objects to be returned as result of request.

Responses

OK

Schema
    result object[]
  • Array [
  • id string

    Unique identification of withdrawal.

    asset string

    Asset ID.

    network string

    Network ID.

    amount string

    Value amount of asset.

    address string

    The destination address.

    destination_tag string

    A complementary information used in some networks.

    memo string

    A complementary information used in some networks.

    transaction_hash string

    Unique Identifier for a particular transaction at blockchain.

    status string

    Possible values: [CANCELED, COMPLETED, PENDING]

    Status of the progress of withdrawal processing:

    • CANCELED: Canceled by customer or internal processes;
    • COMPLETED: All processes have been completed;
    • PENDING: Waiting internal processes or blockchain confirmation.
    status_updated_at integer

    Timestamp of the time when the this object status was updated.

    created_at created_at (integer)

    Timestamp of when this object was created.

    negative_status_reason string

    Possible values: [INTERNAL_ERROR, NOT_ENOUGH_FUNDS, INVALID_DESTINATION_ADDRESS]

    Reason why a withdrawal could not be completed.

  • ]
Loading...