Skip to main content
GET
/
tokens
List API Keys
curl --request GET \
  --url https://api.useqrkit.com/v1/tokens \
  --header 'Authorization: Bearer <token>'
{
  "object": "list",
  "has_more": true,
  "next_cursor": "<string>",
  "data": [
    {
      "id": "key_aB3dE5fG7hI9jK1m",
      "object": "api_key",
      "name": "<string>",
      "key_prefix": "qr_live_a1b2",
      "scopes": [
        "<string>"
      ],
      "last_used_at": "2023-11-07T05:31:56Z",
      "expires_at": "2023-11-07T05:31:56Z",
      "created_at": "2023-11-07T05:31:56Z"
    }
  ]
}

Authorizations

Authorization
string
header
required

API key in the Authorization header: Bearer qr_live_… or Bearer qr_test_…. Token endpoints take a Clerk session JWT instead.

Response

List of API keys

object
string
Example:

"list"

has_more
boolean
next_cursor
string | null
data
object[]