Docs
Sandbox

POST /v1/sandbox/faucet-claims

Request a quota-bounded claim of the configured sandbox test token for the current admission wallet

AvailabilityPrivate Preview
Method and pathPOST /v1/sandbox/faucet-claims
API version1.0.0-private-preview
Base URLhttps://api.torq.finance
AuthenticationSecretKey, WalletSession, PublishableKey
IdempotencyRequired header: Idempotency-Key.
Rate limitsRead x-ratelimit-* and x-request-id response headers. Do not hard-code a quota.

Authentication requirements

  • SecretKey
  • WalletSession
  • PublishableKey

Request examples

terminal
curl -X POST 'https://api.torq.finance/v1/sandbox/faucet-claims' \
  -H 'Accept: application/json' \
  -H 'Authorization: Bearer $TORQ_SECRET_KEY' \
  -H 'x-torq-wallet-session: $TORQ_WALLET_SESSION' \
  -H 'Idempotency-Key: $TORQ_IDEMPOTENCY_KEY' \
  -H 'Content-Type: application/json' \
  --data '{"walletAddress":"0x4ac10f0186719528ae77B1cf6186AE83002C450D","assetAddress":"0x4ac10f0186719528ae77B1cf6186AE83002C450D","amount":"sample_amount"}'
Run a safe sample

This calls the docs preview and returns sample data shaped by the governed OpenAPI response. It never accepts credentials or changes protocol state.

Run the sample call to inspect a schema-shaped response without credentials or side effects.
Request bodySandboxFaucetClaimRequest

Parameters

NameInRequiredType
Idempotency-KeyheaderYesstring

Request schema

SandboxFaucetClaimRequest SandboxFaucetClaimRequest

PropertyTypeRequiredDescription
walletAddressstringYes
assetAddressstringYes
amountstringYes
Inspect nested properties

walletAddress string · required

pattern: ^0x[a-fA-F0-9]{40}$

assetAddress string · required

pattern: ^0x[a-fA-F0-9]{40}$

amount string · required

pattern: ^[1-9][0-9]{0,38}$

Responses

StatusMeaningSchema
200Successful responseSandboxFaucetClaim
400Invalid requestTorqApiError
401Authentication requiredTorqApiError
403Insufficient scope or authorityTorqApiError
409State or idempotency conflictTorqApiError
429Rate limit exceededTorqApiError
500Internal failureTorqApiError

200 response schema

SandboxFaucetClaim SandboxFaucetClaim

PropertyTypeRequiredDescription
idstringYes
sandboxIdstringYes
walletAddressstringYes
assetAddressstringYes
amountstringYes
claimIdstringYes
statusenumYes
requestedAtstring (date-time)Yes
Inspect nested properties

id string · required

minimum length: 1 · maximum length: 200

sandboxId string · required

minimum length: 1 · maximum length: 200

walletAddress string · required

pattern: ^0x[a-fA-F0-9]{40}$

assetAddress string · required

pattern: ^0x[a-fA-F0-9]{40}$

amount string · required

pattern: ^[1-9][0-9]{0,38}$

claimId string · required

pattern: ^0x[a-fA-F0-9]{64}$

status enum · required

one of: requested, submitted, mined, indexed, persisted_visible, final_success, failed

requestedAt string (date-time) · required

400, 401, 403, 409, 429, 500 response schema

TorqApiError TorqApiError

PropertyTypeRequiredDescription
okbooleanYes
codestringYes
messagestringYes
requestIdstringYes
retryablebooleanYes
blockedReasonstring | nullNo
docsUrlstring (uri)No
Inspect nested properties

ok boolean · required

code string · required

minimum length: 1 · maximum length: 200

message string · required

minimum length: 1 · maximum length: 200

requestId string · required

minimum length: 1 · maximum length: 200

retryable boolean · required

blockedReason string | null · optional

nullable

docsUrl string (uri) · optional

Related guides

For retry behavior and blocked-state handling, see Errors and rate limits.