API Keys

List API Keys

Retrieves all API keys associated with the current user. Keys are returned in masked format (e.g., `vw_abc1...xyz9`).

GET
/api/v1/api-keys

Authorization

veriworkly-auth.session_token<token>

Internal session cookie for local development.

In: cookie

Response Body

application/json

application/json

curl -X GET "https://api.veriworkly.com/api/v1/api-keys"
{
  "success": true,
  "message": "string",
  "data": [
    {
      "id": "string",
      "key": "vw_a1b2c3...x9y0z1",
      "name": "string",
      "isActive": true,
      "rateLimit": 0,
      "createdAt": "2019-08-24T14:15:22Z",
      "updatedAt": "2019-08-24T14:15:22Z",
      "lastUsed": "2019-08-24T14:15:22Z"
    }
  ]
}
{
  "success": false,
  "statusCode": 401,
  "message": "Authentication required"
}