Skip to main content
GET
/
api
/
v1
/
user
/
apikeys
List API Keys
curl --request GET \
  --url https://vulnix0.com/api/v1/user/apikeys \
  --header 'api-key: <api-key>'
[
  {
    "prefix": "a1b2c3d4",
    "created_at": "2023-11-07T05:31:56Z",
    "last_used_at": "2023-11-07T05:31:56Z"
  }
]

Authorizations

api-key
string
header
required

A unique API Key.

Response

200 - application/json

A list of API key metadata.

prefix
string

The first 8 characters of the API key for identification.

Example:

"a1b2c3d4"

created_at
string<date-time>
last_used_at
string<date-time>
I