For the complete documentation index, see llms.txt. This page is also available as Markdown.

Fetch static wallet

Returns a static wallet address by walletId

POST https://app.thedex.cloud/api/v1/wallets/one

Headers

Name
Type
Description

X-EX-APIKEY*

String

Your API key

X-EX-PAYLOAD*

String

Body to base64

X-EX-SIGNATURE*

String

Encrypted body with the secret key

Request Body

{
    "walletId": "String"
}

Request JSON attributes

Name
Type
Description

walletId*

String

The unique identifier of the requested wallet

Response Body

{
    "walletId": "String",
    "monetary": "String",    // Returned if created in Monetary mode
    "blockchain": "String",  // Returned if created in Blockchain-based mode
    "clientId": "String",
    "successUrl": "String",
    "failureUrl": "String",
    "callbackUrl": "String",
    "fiatCurrency": "String",
    "address": "String",
    "minAmount": "String",
    "isActive": "Boolean",
    "payUrl": "String",
    "qrBase64": "String"
}

Response JSON attributes

"walletId"

String

Unique identifier of the created wallet

"monetary"

String

Cryptocurrency of the created wallet. Returned only if the wallet was created in Monetary mode

"blockchain"

String

Blockchain network of the created wallet. Returned only if the wallet was created in Blockchain-based mode

"clientId"

String

Arbitrary identifier of the client

"successUrl"

String

Success url to redirect customer after successful payment

"failureUrl"

String

Failure url to redirect customer after failed payment

"callbackUrl"

String

Callback url to receive webhook about created invoices after successful / failed deposit of wallet

"address"

String

Generated crypto address for accepting payments

"minAmount"

String

Minimum amount required to accept a payment

"isActive"

Boolean

Indicates whether the wallet is active.

"payUrl"

String

Pay url

"qrBase64"

String

A Base64-encoded PNG image of a QR code that encodes the wallet address for payment

"fiatCurrency"

String

Default = USD

Reach out all available fiat currencies by endpoint: /api/v1/info/currencies Primary Used for recalculation of paid_amount_fiat.

Request Curl

Example Curl

Last updated