# List API sessions Retrieve a list of API sessions opened by this user. Endpoint: GET /accounts/{number}/sessions Version: 3.0.0 Security: SessionKey ## Path parameters: - `number` (string, required) Alphanumeric identifier of the user account ## Query parameters: - `records` (integer) The number of records per page that should be returned - `page` (integer) The number of the results page to return ## Response 200 fields (application/json): - `total` (integer) The total number of results available - `page` (integer) The number of the results page returned - `records` (integer) The maximum number of results returned per page - `entries` (array) - `entries.open` (boolean) True if the session is currently active, false otherwise - `entries.ip` (string) IP Address from which the session was opened - `entries.agent` (string) User Agent (UA) string of the agent from which the session was opened - `entries.started` (string) Time at which the session was opened - `entries.ended` (string) Time at which the session was ended, if it is no longer open ## Response 404 fields (application/json): - `message` (string) Reason for the given response.