Docs
Identity and access

POST /v1/wallet-sessions/confirm

Confirm a wallet challenge and issue an opaque short-lived session

AvailabilityPrivate Preview
Method and pathPOST /v1/wallet-sessions/confirm
API version1.0.0-private-preview
Base URLhttps://api.torq.finance
AuthenticationPublishableKey, SecretKey
IdempotencyRequired header: Idempotency-Key.
Rate limitsRead x-ratelimit-* and x-request-id response headers. Do not hard-code a quota.

Authentication requirements

  • PublishableKey
  • SecretKey

Request examples

terminal
curl -X POST 'https://api.torq.finance/v1/wallet-sessions/confirm' \
  -H 'Accept: application/json' \
  -H 'x-torq-publishable-key: $TORQ_PUBLISHABLE_KEY' \
  -H 'Idempotency-Key: $TORQ_IDEMPOTENCY_KEY' \
  -H 'Content-Type: application/json' \
  --data '{"challengeId":"sample_challengeid","signature":"0xSAMPLE_SIGNATURE_REPLACE_WITH_WALLET_OUTPUT","scopes":["sample_scopes"]}'
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 bodyWalletChallengeConfirmation

Parameters

NameInRequiredType
Idempotency-KeyheaderYesstring

Request schema

WalletChallengeConfirmation WalletChallengeConfirmation

PropertyTypeRequiredDescription
challengeIdstringYes
signaturestringYes
scopesstring[]Yes
Inspect nested properties

challengeId string · required

minimum length: 1 · maximum length: 200

signature string · required

pattern: ^0x[a-fA-F0-9]+$

scopes string[] · required

items string

Responses

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

200 response schema

WalletSession WalletSession

PropertyTypeRequiredDescription
tokenstringYes
walletAddressstringYes
expiresAtstring (date-time)Yes
Inspect nested properties

token string · required

minimum length: 1 · maximum length: 200

walletAddress string · required

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

expiresAt 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.