Docs
Identity and access

POST /v1/keys

Create an origin-bound publishable key or server secret key

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

Authentication requirements

  • SecretKey

Request examples

terminal
curl -X POST 'https://api.torq.finance/v1/keys' \
  -H 'Accept: application/json' \
  -H 'Authorization: Bearer $TORQ_SECRET_KEY' \
  -H 'Idempotency-Key: $TORQ_IDEMPOTENCY_KEY' \
  -H 'Content-Type: application/json' \
  --data '{"kind":"publishable","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 bodyApiKeyCreateRequest

Parameters

NameInRequiredType
Idempotency-KeyheaderYesstring

Request schema

ApiKeyCreateRequest ApiKeyCreateRequest

PropertyTypeRequiredDescription
kindenumYes
scopesstring[]Yes
originsstring (uri)[]No
Inspect nested properties

kind enum · required

one of: publishable, secret

scopes string[] · required

items string

origins string (uri)[] · optional

items string (uri)

Responses

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

200 response schema

ApiKeyCreated ApiKeyCreated

PropertyTypeRequiredDescription
idstringYes
applicationIdstringYes
kindenumYes
tokenstringYes
scopesstring[]Yes
originsstring[]No
rotatedFromKeyIdstring | nullNo
secretShownOncebooleanYes
createdAtstring (date-time)No
Inspect nested properties

id string · required

minimum length: 1 · maximum length: 200

applicationId string · required

minimum length: 1 · maximum length: 200

kind enum · required

one of: publishable, secret

token string · required

minimum length: 1 · maximum length: 200

scopes string[] · required

items string

origins string[] · optional

items string

rotatedFromKeyId string | null · optional

nullable

secretShownOnce boolean · required

createdAt string (date-time) · optional

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.