API Keys

List API keys

GET
/v1/api-keys
AuthorizationBearer <token>

API key minted via POST /v1/api-keys (format mk_live_...)

In: header

Response Body

application/json

application/json

curl -X GET "https://api.mentio.dev/v1/api-keys"
{
  "data": [
    {
      "id": "string",
      "name": "string",
      "prefix": "string",
      "scope": "read",
      "createdAt": "string",
      "lastUsedAt": "string",
      "expiresAt": "string"
    }
  ]
}
{
  "error": {
    "code": "unauthorized",
    "message": "string",
    "requestId": "string",
    "retryAfterSeconds": 0
  }
}