Skip to main content
GET
/
api
/
v1
/
api-keys
/
simple
List API keys (simple)
curl --request GET \
  --url https://api.uplint.dev/api/v1/api-keys/simple \
  --header 'Authorization: Bearer <token>'
{
  "status": "SUCCESS",
  "message": "API keys retrieved",
  "data": [
    {
      "api_key_id": "6612f1a2c3b4d5e6f7890123",
      "name": "Backend Service",
      "status": "active"
    },
    {
      "api_key_id": "6612f1a2c3b4d5e6f7890456",
      "name": "Mobile App",
      "status": "active"
    }
  ],
  "timestamp": "2026-02-10T12:00:00Z"
}

Authorizations

Authorization
string
header
required

Pass an API key or JWT token. API keys can be sent as Authorization: Bearer <key> or Authorization: <key>.

Response

Simple list of API keys.

status
enum<string>
Available options:
SUCCESS
message
string
data
object[]
timestamp
string<date-time>