Skip to main content

Get User Latency

Outcome

Retrieve latency information for trades triggered by a user.

Endpoint

Example Endpoint

  • GET /broker/get_broker_user_latency_by_email
    • Query Parameters:
      • user_email: Required. Email of the user (string)
      • limit: Optional. Maximum number of records to fetch (integer, default 30, max 100)
    • Response:
      • 200 OK: A JSON object containing latency records for the specified user
      • 500 Internal Server Error: If an error occurs.

Parameters

Additional required parameter(s)

  • Authorization Header: Required for authentication. Should contain a valid token.
  • Content-Type Header: Should be set to application/json for JSON data.

Example

Curl

curl --location 'https://hub2.trylevel2.com/broker/get_broker_user_latency_by_email?user_email=user@example.com&limit=50' \
--header 'Authorization: Bearer [token]' \
--header 'Content-Type: application/json'