Skip to main content
GET
/
api
/
user
/
api-key-usage
List devices that have used the caller's personal API key
curl --request GET \
  --url https://pria.praxislxp.com/api/user/api-key-usage \
  --header 'Authorization: Bearer <token>'
{
  "success": true,
  "devices": [
    {
      "id": "<string>",
      "sourceIp": "203.0.113.42",
      "ipSubnet24": "203.0.113.0/24",
      "ua": "Mozilla/5.0 ...",
      "uaFamily": "Chrome",
      "uaOs": "macOS",
      "uaVersion": "120.0.0.0",
      "clientName": "<string>",
      "clientHostname": "<string>",
      "firstSeenAt": "2023-11-07T05:31:56Z",
      "lastSeenAt": "2023-11-07T05:31:56Z",
      "usageCount": 42
    }
  ]
}

Authorizations

Authorization
string
header
required

JWT token passed in authorization header

Response

List returned (may be empty).

success
boolean
devices
object[]