Skip to main content
POST
/
api
/
v1
/
faucet
/
deposit
Request faucet deposit
import requests

url = "https://api.example.com/api/v1/faucet/deposit"

payload = {
    "address": "<string>",
    "token_id": "<string>"
}
headers = {"Content-Type": "application/json"}

response = requests.post(url, json=payload, headers=headers)

print(response.text)
{
  "result": {
    "address": "<string>",
    "token_id": "<string>",
    "amount": "<string>",
    "result": {}
  },
  "success": true,
  "suggestion": "",
  "message": "",
  "meta": {
    "total": 123,
    "offset": 123,
    "limit": 123,
    "has_more": true,
    "after": "<string>",
    "before": "<string>"
  }
}

Headers

X-API-Key
string | null

Body

application/json
address
string
required

Destination address to receive test tokens

token_id
string
required

Token identifier, e.g. SETH_USDC

Response

Successful Response

result
FaucetDepositResult · object
required
success
boolean
default:true
suggestion
string
default:""
message
string
default:""
meta
PaginationMeta · object

Pagination metadata for list responses.

Supports both legacy offset-based and cursor-based pagination. Cursor fields (has_more, after, before) are populated for cursor-paginated endpoints. Legacy fields (offset, limit) are populated when the caller uses the deprecated offset parameter.