Wordpress.com

Hosted Wordpress

Go to site
Explore
/
Apps
/
Wordpress.com

Wordpress.com API Integrations

Build and run workflows using the Wordpress.com API. Use 1000s of source-available triggers and actions across 1000+ apps. Or write custom code to integrate any app or API in seconds.

Overview

WordPress.com allows developers to create powerful applications and websites, using the WordPress.com API. With the WordPress.com API, developers can create custom applications and websites that integrate with the WordPress.com platform in meaningful ways.

The WordPress.com API is accessible via REST, which allows developers to interact with WordPress.com in a variety of ways. Additionally, developers can extend the WordPress.com platform by creating custom plugins and themes.

Here are some examples of what you can build with the Wordpress.com API:

  • Custom blog or website
  • Online store
  • Custom dashboard for managing content
  • Custom user profiles
  • Analytics and reporting tools
  • Social media integration
  • Search engine optimization
  • Email campaigns
  • Custom payment gateway solutions
  • Content marketing platforms
  • Advertising networks
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
import { axios } from "@pipedream/platform"
export default defineComponent({
  props: {
    wordpress_com: {
      type: "app",
      app: "wordpress_com",
    }
  },
  async run({steps, $}) {
    return await axios($, {
      url: `https://public-api.wordpress.com/rest/v1.1/me`,
      headers: {
        Authorization: `Bearer ${this.wordpress_com.$auth.oauth_access_token}`,
      },
    })
  },
})

Choose an API to Connect with Wordpress.com API

1
-
12
of
1000+
apps by most popular

Authentication

Wordpress.com uses OAuth authentication. When you connect your Wordpress.com account, Pipedream will open a popup window where you can sign into Wordpress.com and grant Pipedream permission to connect to your account. Pipedream securely stores and automatically refreshes the OAuth tokens so you can easily authenticate any Wordpress.com API.

Pipedream requests the following authorization scopes when you connect your account:

global
OAuth Request Configurations:
  1. authorization
    GEThttps://public-api.wordpress.com/oauth2/authorize?client_id={{oauth.client_id}}&redirect_uri={{oauth.redirect_uri}}&state={{oauth.state}}&response_type=code&scope={{oauth.space_separated_scopes}}
  2. accessToken
    POSThttps://public-api.wordpress.com/oauth2/tokencontent-type: application/x-www-form-urlencodedaccept: application/json
    client_id={{oauth.client_id}}&client_secret={{oauth.client_secret}}&redirect_uri={{oauth.redirect_uri}}&grant_type=authorization_code&code={{oauth.code}}