Real-time performance insights into your software, infrastructure & customer experience
Go to siteNew Relic's API enables you to do the following:
Here are some examples of what you can build using the New Relic API:
import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
new_relic: {
type: "app",
app: "new_relic",
}
},
async run({steps, $}) {
return await axios($, {
url: `https://api.newrelic.com/v2/users.json`,
headers: {
"X-Api-Key": `${this.new_relic.$auth.api_key}`,
},
})
},
})
New Relic uses API keys for authentication. When you connect your New Relic account, Pipedream securely stores the keys so you can easily authenticate to New Relic APIs in both code and no-code steps.
New Relic API calls require an API key in the call header. The API key uniquely identifies your account and authorizes access to your account data. Find your API key in your account settings > integrations > api key.