Skip to main content
POST
Fund a sandbox wallet from the testnet faucet

Authorizations

x-api-key
string
header
required

Headers

x-idempotency-key
string<uuid>
required

Unique key to ensure request idempotency. If the same key is used within a certain time window, the original response will be returned instead of executing the request again.

Path Parameters

wallet_id
string
required

Wallet to fund. KSUID is a 27-character globally unique ID that combines a timestamp with a random component. Used for all entity identifiers in the Dakota platform.

Required string length: 27
Pattern: ^[0-9A-Za-z]{27}$
Example:

"1NFHrqBHb3cTfLVkFSGmHZqdDPi"

Body

application/json

A request to fund a sandbox wallet from the testnet float.

amount
string
required

Amount in decimal token units. Capped by the sandbox per-transaction limit.

Example:

"2.00"

asset
enum<string>
default:RD

Asset to fund. Only RD is served today; the field exists so a second asset can be added once a float exists for it.

Available options:
RD
Example:

"RD"

Response

Faucet transfer accepted

An accepted faucet transfer.

simulation_id
string
required

Simulation identifier. Resolve it with GET /sandbox/simulations/{simulation_id}.

wallet_id
string
required

KSUID is a 27-character globally unique ID that combines a timestamp with a random component. Used for all entity identifiers in the Dakota platform.

Required string length: 27
Pattern: ^[0-9A-Za-z]{27}$
Example:

"1NFHrqBHb3cTfLVkFSGmHZqdDPi"

asset
string
required

Asset that was sent.

Example:

"RD"

amount
string
required

Amount that was sent, in decimal token units.

Example:

"2.00"

status
enum<string>
required

State of a sandbox simulation after submission.

Available options:
accepted
tx_hash
string

Reserved for the on-chain transaction hash. The faucet answers before the transfer has one, so the accepted response does not carry it. Do not depend on this field; poll GET /sandbox/simulations/{simulation_id} for the outcome.