SEO Tools & Resources
Get the backlinks for a domain or URL with details for the referring pages (e.g., anchor and page title).
Add or update a single record in your Pipedream Data Store.
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).
Add or update multiple records to your Pipedream Data Store.
Get the referring domains that contain backlinks to the target URL or domain.
Ahrefs is a powerful API that allows you to build a variety of applications and
tools. Here are some examples of what you can build with Ahrefs:
import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
ahrefs: {
type: "app",
app: "ahrefs",
}
},
async run({steps, $}) {
return await axios($, {
url: `https://apiv2.ahrefs.com`,
params: {
output: `json`,
token: `${this.ahrefs.$auth.oauth_access_token}`,
from: `subscription_info`,
},
})
},
})
With the Data Stores API, you can build applications that:
export default defineComponent({
props: {
myDataStore: {
type: "data_store",
},
},
async run({ steps, $ }) {
await this.myDataStore.set("key_here","Any serializable JSON as the value")
return await this.myDataStore.get("key_here")
},
})