SmartMemory
GET
/memory/api-keys

List all API keys for the current user.

Returns metadata about each key, but not the actual key values.

Response Body

application/json

curl -X GET "https://example.com/memory/api-keys"
[
  {
    "id": "string",
    "key_id": "string",
    "name": "string",
    "key_prefix": "string",
    "scopes": [
      "string"
    ],
    "last_used_at": "2019-08-24T14:15:22Z",
    "expires_at": "2019-08-24T14:15:22Z",
    "created_at": "2019-08-24T14:15:22Z",
    "is_active": true
  }
]