with Exact and Ahrefs?
Emit new event each time a new account is created. See the docs
Emit new event each time a new contact is created. See the docs
Get the backlinks for a domain or URL with details for the referring pages (e.g., anchor and page title). See the documentation
Get one backlink with the highest ahrefs_rank per referring domain for a target URL or domain (with details for the referring pages including anchor and page title). See the documentation
Get the referring domains that contain backlinks to the target URL or domain. See the documentation
The Exact API provides a suite of endpoints for interacting with Exact's cloud-based financial software, which includes tools for accounting, CRM, and ERP functionalities. By leveraging this API on Pipedream, you can automate data flows across various business functions, sync financial records, manage customer relationships, and streamline operational processes. Pipedream's serverless execution model allows for crafting intricate workflows that respond in real-time to events, schedule operations, and connect with countless other apps to extend the functionality of Exact's ecosystem.
import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
exact: {
type: "app",
app: "exact",
}
},
async run({steps, $}) {
return await axios($, {
url: `https://start.exactonline.${this.exact.$auth.region}/api/v1/current/Me?$select=UserID,Email`,
headers: {
Authorization: `Bearer ${this.exact.$auth.oauth_access_token}`,
"Content-Type": `application/json`,
},
params: {
"$select": `UserID,Email`,
},
})
},
})
Ahrefs API taps into the vast data reserves of Ahrefs, a robust SEO tool, to programmatically access insights into backlink profiles, keyword rankings, and SEO health. With Pipedream's capabilities, you can automate SEO monitoring, integrate with content management systems, trigger alerts for new or lost backlinks, or gather intelligence for keyword research—all without manual intervention. This unlocks the potential for real-time SEO strategy adjustments and the integration of SEO data into broader business processes or analytics platforms.
import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
ahrefs: {
type: "app",
app: "ahrefs",
}
},
async run({steps, $}) {
return await axios($, {
url: `https://api.ahrefs.com/v3/site-explorer/all-backlinks`,
headers: {
Authorization: `Bearer ${this.ahrefs.$auth.oauth_access_token}`,
},
params: {
output: `json`,
select: `http_code`,
target: `ahrefs.com`,
},
})
},
})