Skip to main content
GET
/
auth
/
api-keys
List API keys
curl --request GET \
  --url https://clob.forka.st/auth/api-keys \
  --header 'FORKAST_ADDRESS: <forkast_address>' \
  --header 'FORKAST_API_KEY: <forkast_api_key>' \
  --header 'FORKAST_PASSPHRASE: <forkast_passphrase>' \
  --header 'FORKAST_SIGNATURE: <forkast_signature>' \
  --header 'FORKAST_TIMESTAMP: <forkast_timestamp>'
[
  "5f0c1f74-0c0e-4dc4-9d3f-5b0c8c2f6c62",
  "9d2a4e83-bf61-41ed-9f2a-2f91fb9c4b78"
]
Retrieve the API keys associated with the authenticated Polygon address.
This endpoint requires the L2 header. Provide FORKAST_ADDRESS, FORKAST_SIGNATURE, FORKAST_TIMESTAMP, FORKAST_API_KEY, and FORKAST_PASSPHRASE.

Required headers

HeaderDescription
FORKAST_ADDRESSPolygon address that owns the credentials.
FORKAST_SIGNATUREHMAC signature generated with the API secret.
FORKAST_TIMESTAMPCurrent Unix timestamp (seconds).
FORKAST_API_KEYAPI key authorizing the request.
FORKAST_PASSPHRASEPassphrase paired with the API key.
The array only contains active API key identifiers. Revoked keys are excluded from this response. To retire a key, call DELETE /auth/api-key. For UI-based management, open auth.forka.st.

Headers

FORKAST_ADDRESS
string
required

Polygon address that owns the keys.

FORKAST_SIGNATURE
string
required

HMAC signature derived from the API secret.

FORKAST_TIMESTAMP
string
required

Unix timestamp (seconds) used for signing.

FORKAST_API_KEY
string
required

API key authorizing the request.

FORKAST_PASSPHRASE
string
required

Passphrase corresponding to the API key.

Response

Array of API keys

Active API key identifier.