{ "opencollection": "1.0.0", "info": { "name": "New Relic Event Alerts Metrics API", "version": "1" }, "request": { "auth": { "type": "apikey", "key": "Api-Key", "value": "{{Api-Key}}", "placement": "header" } }, "items": [ { "info": { "name": "Metrics", "type": "folder" }, "items": [ { "info": { "name": "New Relic Send Metric Data", "type": "http" }, "http": { "method": "POST", "url": "https://insights-collector.newrelic.com/metric/v1", "headers": [ { "name": "Api-Key", "value": "" }, { "name": "Content-Encoding", "value": "gzip" }, { "name": "Content-Type", "value": "application/json" } ], "body": { "type": "json", "data": "{}" } }, "docs": "Sends an array of metric data points to the New Relic Metric API. The request body must be a JSON array of metric data objects, each containing a metrics array and optional common attributes. Payloads should be gzip-compressed for best performance. The API supports count, gauge, and summary metric types." }, { "info": { "name": "New Relic Get Applications Hosts Host Metrics", "type": "http" }, "http": { "method": "GET", "url": "https://insights-collector.newrelic.com/applications/:application_id/hosts/:host_id/metrics.json", "params": [ { "name": "application_id", "value": "100", "type": "path", "description": "Application ID" }, { "name": "host_id", "value": "100", "type": "path", "description": "Application Host ID" }, { "name": "name", "value": "example-resource-01", "type": "query", "description": "Filter metrics by name" }, { "name": "page", "value": "100", "type": "query", "description": "Pagination index (will be deprecated)" }, { "name": "cursor", "value": "example_string", "type": "query", "description": "Cursor for next page (replacing page param)" } ] }, "docs": "This API operation retrieves a list of metric names associated with a specific host within a given application in New Relic's Application Performance Monitoring (APM) system. By providing both an application ID and a host in the endpoint path, users can query the available metrics that New Relic is collecting for that particular host instance. The response returns metric name data in JSON format, which typically includes identifiers and metadata for various performance measurements such as CPU u" }, { "info": { "name": "New Relic Get Applications Hosts Host Metrics Data", "type": "http" }, "http": { "method": "GET", "url": "https://insights-collector.newrelic.com/applications/:application_id/hosts/:host_id/metrics/data.json", "params": [ { "name": "application_id", "value": "100", "type": "path", "description": "Application ID" }, { "name": "host_id", "value": "100", "type": "path", "description": "Application Host ID" }, { "name": "names", "value": "example_string", "type": "query", "description": "Retrieve specific metrics by name" }, { "name": "values", "value": "example_string", "type": "query", "description": "Retrieve specific metric values" }, { "name": "from", "value": "2026-04-18T14:30:00Z", "type": "query", "description": "Retrieve metrics after this time" }, { "name": "to", "value": "2026-04-18T14:30:00Z", "type": "query", "description": "Retrieve metrics before this time" }, { "name": "period", "value": "100", "type": "query", "description": "Period of timeslices in seconds" }, { "name": "summarize", "value": "true", "type": "query", "description": "Summarize the data" }, { "name": "raw", "value": "true", "type": "query", "description": "Return unformatted raw values" } ] }, "docs": "This API operation retrieves metric data for a specific host associated with a particular application in New Relic. By making a GET request to the endpoint with the application and host as path parameters, users can access detailed performance metrics and monitoring data for that specific host instance. The operation returns data in JSON format, which typically includes time-series metric values such as response times, throughput, error rates, and other performance indicators collected by New Re" }, { "info": { "name": "New Relic Get Applications Instances Instance Metrics", "type": "http" }, "http": { "method": "GET", "url": "https://insights-collector.newrelic.com/applications/:application_id/instances/:instance_id/metrics.json", "params": [ { "name": "application_id", "value": "100", "type": "path", "description": "Application ID" }, { "name": "instance_id", "value": "100", "type": "path", "description": "Application Instance ID" }, { "name": "name", "value": "example-resource-01", "type": "query", "description": "Filter metrics by name" }, { "name": "page", "value": "100", "type": "query", "description": "Pagination index (will be deprecated)" }, { "name": "cursor", "value": "example_string", "type": "query", "description": "Cursor for next page (replacing page param)" } ] }, "docs": "
Return a list of known metrics and their value names for the given resource.
\n\nSee our documentation for a discussion\non output pagination\nand for examples of requesting and using metric values.
\n" }, { "info": { "name": "New Relic Get Applications Instances Instance Metrics Data", "type": "http" }, "http": { "method": "GET", "url": "https://insights-collector.newrelic.com/applications/:application_id/instances/:instance_id/metrics/data.json", "params": [ { "name": "application_id", "value": "100", "type": "path", "description": "Application ID" }, { "name": "instance_id", "value": "100", "type": "path", "description": "Application Instance ID" }, { "name": "names", "value": "example_string", "type": "query", "description": "Retrieve specific metrics by name" }, { "name": "values", "value": "example_string", "type": "query", "description": "Retrieve specific metric values" }, { "name": "from", "value": "2026-04-18T14:30:00Z", "type": "query", "description": "Retrieve metrics after this time" }, { "name": "to", "value": "2026-04-18T14:30:00Z", "type": "query", "description": "Retrieve metrics before this time" }, { "name": "period", "value": "100", "type": "query", "description": "Period of timeslices in seconds" }, { "name": "summarize", "value": "true", "type": "query", "description": "Summarize the data" }, { "name": "raw", "value": "true", "type": "query", "description": "Return unformatted raw values" } ] }, "docs": "This API endpoint returns a list of values for each of the requested metrics. The list of available metrics\ncan be returned using the Metric Name API endpoint.
\n\nMetric data can be filtered by a number of parameters, including multiple names and values, and by time range.\nMetric names and values will be matched intelligently in the background.
\n\nYou can also retrieve a summarized data point across the entire time range selected by using the summarize\nparameter.
\n\nSee our doc" }, { "info": { "name": "New Relic Get Applications Metrics", "type": "http" }, "http": { "method": "GET", "url": "https://insights-collector.newrelic.com/applications/:application_id/metrics.json", "params": [ { "name": "application_id", "value": "100", "type": "path", "description": "Application ID" }, { "name": "name", "value": "example-resource-01", "type": "query", "description": "Filter metrics by name" }, { "name": "page", "value": "100", "type": "query", "description": "Pagination index (will be deprecated)" }, { "name": "cursor", "value": "example_string", "type": "query", "description": "Cursor for next page (replacing page param)" } ] }, "docs": "
Return a list of known metrics and their value names for the given resource.
\n\nSee our documentation for a discussion\non output pagination\nand for examples of requesting and using metric values.
\n" }, { "info": { "name": "New Relic Get Applications Metrics Data", "type": "http" }, "http": { "method": "GET", "url": "https://insights-collector.newrelic.com/applications/:application_id/metrics/data.json", "params": [ { "name": "application_id", "value": "100", "type": "path", "description": "Application ID" }, { "name": "names", "value": "example_string", "type": "query", "description": "Retrieve specific metrics by name" }, { "name": "values", "value": "example_string", "type": "query", "description": "Retrieve specific metric values" }, { "name": "from", "value": "2026-04-18T14:30:00Z", "type": "query", "description": "Retrieve metrics after this time" }, { "name": "to", "value": "2026-04-18T14:30:00Z", "type": "query", "description": "Retrieve metrics before this time" }, { "name": "period", "value": "100", "type": "query", "description": "Period of timeslices in seconds" }, { "name": "summarize", "value": "true", "type": "query", "description": "Summarize the data" }, { "name": "raw", "value": "true", "type": "query", "description": "Return unformatted raw values" } ] }, "docs": "This API endpoint returns a list of values for each of the requested metrics. The list of available metrics\ncan be returned using the Metric Name API endpoint.
\n\nMetric data can be filtered by a number of parameters, including multiple names and values, and by time range.\nMetric names and values will be matched intelligently in the background.
\n\nYou can also retrieve a summarized data point across the entire time range selected by using the summarize\nparameter.
\n\nSee our doc" }, { "info": { "name": "New Relic Get Mobile Applications Mobile Application Metrics", "type": "http" }, "http": { "method": "GET", "url": "https://insights-collector.newrelic.com/mobile_applications/:mobile_application_id/metrics.json", "params": [ { "name": "mobile_application_id", "value": "100", "type": "path", "description": "Mobile application ID" }, { "name": "name", "value": "example-resource-01", "type": "query", "description": "Filter metrics by name" }, { "name": "page", "value": "100", "type": "query", "description": "Pagination index (will be deprecated)" }, { "name": "cursor", "value": "example_string", "type": "query", "description": "Cursor for next page (replacing page param)" } ] }, "docs": "
Return a list of known metrics and their value names for the given resource.
\n\nSee our documentation for a discussion\non output pagination\nand for examples of requesting and using metric values.
\n" }, { "info": { "name": "New Relic Get Mobile Applications Mobile Application Metrics Data", "type": "http" }, "http": { "method": "GET", "url": "https://insights-collector.newrelic.com/mobile_applications/:mobile_application_id/metrics/data.json", "params": [ { "name": "mobile_application_id", "value": "100", "type": "path", "description": "Mobile application ID" }, { "name": "names", "value": "example_string", "type": "query", "description": "Retrieve specific metrics by name" }, { "name": "values", "value": "example_string", "type": "query", "description": "Retrieve specific metric values" }, { "name": "from", "value": "2026-04-18T14:30:00Z", "type": "query", "description": "Retrieve metrics after this time" }, { "name": "to", "value": "2026-04-18T14:30:00Z", "type": "query", "description": "Retrieve metrics before this time" }, { "name": "period", "value": "100", "type": "query", "description": "Period of timeslices in seconds" }, { "name": "summarize", "value": "true", "type": "query", "description": "Summarize the data" }, { "name": "raw", "value": "true", "type": "query", "description": "Return unformatted raw values" } ] }, "docs": "This API endpoint returns a list of values for each of the requested metrics. The list of available metrics\ncan be returned using the Metric Name API endpoint.
\n\nMetric data can be filtered by a number of parameters, including multiple names and values, and by time range.\nMetric names and values will be matched intelligently in the background.
\n\nYou can also retrieve a summarized data point across the entire time range selected by using the summarize\nparameter.
\n\nSee our doc" } ] } ], "bundled": true }