Yoast is your go-to resource for everything SEO 🎯 We help you rank your WordPress website
Go to siteThe Yoast SEO API enables automation of SEO tasks and retrieval of data to optimize website content for search engines directly through Pipedream. Connect the Yoast SEO API to analyze pages, manage metadata, and improve search rankings. Pipedream's serverless platform makes it easy to build complex workflows linking Yoast SEO with other services, triggering actions based on content changes, SEO scores, or other criteria.
import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
yoast_seo: {
type: "app",
app: "yoast_seo",
}
},
async run({steps, $}) {
return await axios($, {
url: `https://${this.yoast_seo.$auth.url}/wp-json/yoast/v1/get_head`,
auth: {
username: `${this.yoast_seo.$auth.username}`,
password: `${this.yoast_seo.$auth.application_password}`,
},
params: {
url: `{replace_with_your_url}`,
},
})
},
})
Content Audit Workflow: Automatically fetch the SEO scores of published blog posts from Yoast SEO and create a report in Google Sheets. Use this workflow to identify posts that need optimization and track changes over time.
SEO Alerts via Slack: Set up a workflow where Pipedream monitors your site's SEO health through Yoast SEO API. If a critical issue is detected, such as a drop in keyword rankings or missing metadata, an alert is sent to a designated Slack channel, prompting immediate action.
Automated SEO Recommendations: Combine Yoast SEO with a machine learning API to analyze content and generate SEO recommendations. When a new post is drafted in WordPress, trigger a Pipedream workflow that runs it through Yoast SEO and a machine learning model to suggest improvements before publication.
Yoast SEO uses API keys for authentication. When you connect your Yoast SEO account, Pipedream securely stores the keys so you can easily authenticate to Yoast SEO APIs in both code and no-code steps.
Yoast SEO uses the WordPress REST API. Follow these instructions to connect your self hosted Wordpress instance; their authentication credentials will be used to access Yoast SEO API.
This integration requires the Application Passwords plugin to be installed in your Wordpress instance, which allows you to authenticate without having to provide passwords user passwords directly.
The url
field below is your WordPress site's domain. For example, if you have a Wordpress.org site hosted at https://example.com
, then enter example.com
in the url field below.