GET
/
api_keys
curl --request GET \
  --url https://api.openmind.org/api/core/api_keys \
  --header 'Authorization: Bearer <token>'
[
  {
    "id": "<string>",
    "user_id": "<string>",
    "name": "<string>",
    "hashed_key": "<string>",
    "prefix": "<string>",
    "created_at": "2023-11-07T05:31:56Z",
    "revoked_at": "2023-11-07T05:31:56Z",
    "deleted": true
  }
]

OpenMind allows you to manage your API keys for accessing various services. This endpoint retrieves a list of all API keys associated with your account.

The JWT token is generated with Clerk and is used to authenticate your requests. Ensure you have the necessary permissions to access this endpoint.

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Response

200
application/json

Successful response

The response is of type object[].