Get logs

GET /api/logs

Get logs that match the given query with pagination.

Query parameters

  • userId string

    Filter logs by user ID.

  • Filter logs by application ID.

  • logKey string

    Filter logs by log key.

  • page integer

    Page number (starts from 1).

    Minimum value is 1. Default value is 1.

  • page_size integer

    Entries per page.

    Minimum value is 1. Default value is 20.

Responses

GET /api/logs
curl \
 -X GET https://[tenant_id].logto.app/api/logs
Response examples (200)
[
  {
    "id": "string",
    "key": "string",
    "payload": {
      "key": "string",
      "result": "Success",
      "error": {
        "key": null
      },
      "ip": "string",
      "userAgent": "string",
      "userId": "string",
      "applicationId": "string",
      "sessionId": "string"
    },
    "createdAt": 42.0
  }
]