• /
  • EnglishEspañolFrançais日本語한국어Português
  • Log inStart now

Average browser page load time example (v2)

The average browser page load time (or response time) appears at the top right of the main chart of your Summary page. This value is labeled Browser and shows the average page load time in seconds.

Average page load time

Important

While the examples utilize New Relic's REST API v2, we recommend using NRQL functions for executing metric timeslice queries. Each API value can be mapped to an equivalent NRQL function. To learn how to create NRQL queries based on these API examples, refer to our documentation.

To obtain the average for the time range (default is last 30 minutes), use the following command. Be sure to replace the $APP_ID and $API_KEY variables in this example with your specific application ID and REST API key.

bash
$
curl -X GET "https://api.newrelic.com/v2/applications/$APP_ID/metrics/data.json" \
>
-H "X-Api-Key:$API_KEY" -i \
>
-d 'names[]=EndUser&values[]=average_response_time&summarize=true'
Copyright © 2025 New Relic Inc.

This site is protected by reCAPTCHA and the Google Privacy Policy and Terms of Service apply.