cURL
curl --request GET \ --url https://api.example.com/api/v1/apps/{app_slug}/analytics/summary \ --header 'Authorization: Bearer <token>'
{ "total_requests": 123, "error_count": 123, "error_rate": 123, "avg_response_time_ms": 123, "p95_response_time_ms": 123, "total_request_bytes": 123, "total_response_bytes": 123, "unique_endpoints": 123, "unique_consumers": 123 }
Bearer authentication header of the form Bearer <token>, where <token> is your auth token.
Bearer <token>
<token>
OK