Skip to main content
GET
/
api
/
v1
/
auth
/
keys
List API Keys
curl --request GET \
  --url https://api.mor.org/api/v1/auth/keys \
  --header 'Authorization: <authorization>'
{
  "keys": [
    {
      "id": 123,
      "key_prefix": "<string>",
      "name": "<string>",
      "created_at": "<string>",
      "is_active": true,
      "is_default": true
    }
  ]
}
Get all API keys for the current user. Requires JWT Bearer authentication with the token received from the login endpoint.

Headers

Authorization
string
required
Bearer token (JWT) from OAuth2 login

Response

keys
array
Array of API key objects