Skip to main content
GET
/
user
/
api-keys
List API Keys
curl --request GET \
  --url https://api.totalis.com/user/api-keys \
  --header 'Authorization: Bearer <token>'
{
  "keys": [
    {
      "key_prefix": "<string>",
      "name": "<string>",
      "status": "active",
      "created_at": "2023-11-07T05:31:56Z",
      "expires_at": "2023-11-07T05:31:56Z",
      "last_used_at": "2023-11-07T05:31:56Z",
      "request_count": 123
    }
  ]
}

Authorizations

Authorization
string
header
required

Privy JWT token. Use Authorization: Bearer <token>. Supported for REST API only.

Response

List of API keys

keys
object[]