Skip to main content
GET
/
api
/
v1
/
user
/
api-keys
cURL
curl --request GET \
  --url https://api.ekiden.fi/api/v1/user/api-keys \
  --header 'Authorization: Bearer <token>'
{
  "keys": [
    {
      "created_at": 123,
      "id": "<string>",
      "public_key": "<string>",
      "scopes": [
        "full"
      ],
      "expires_at": 123,
      "name": "<string>"
    }
  ]
}

Authorizations

Authorization
string
header
required

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

Response

List API keys

keys
object[]
required