Cessio Docs
ReferenceFaucet

Draw test tokens from the DevNet faucet

Sends one token-standard transfer per offered token from the desk's reservoir party to yours. They arrive as pending transfers: accept each with `POST /wallet/incoming/{cid}/accept` before the balance is yours. A token the reservoir cannot cover is reported in `skipped` and does not stop the others; the cooldown only starts when something actually went out.

POST
/faucet

Sends one token-standard transfer per offered token from the desk's reservoir party to yours. They arrive as pending transfers: accept each with POST /wallet/incoming/{cid}/accept before the balance is yours.

A token the reservoir cannot cover is reported in skipped and does not stop the others; the cooldown only starts when something actually went out.

Authorization

ApiKeyAuth
X-API-Key<token>

In: header

Response Body

application/json

application/json

application/json

application/json

application/json

curl -X POST "https://example.com/faucet"
{  "sent": [    {      "symbol": "cbtc",      "displaySymbol": "cBTC",      "amount": "0.01"    }  ],  "skipped": [    {      "symbol": "cc",      "reason": "insufficient CC"    }  ],  "retryAfterSeconds": 3600}