Ghost.org (Content API)

Open source publishing platform

Integrate the Ghost.org (Content API) API with the Pocket API

Setup the Ghost.org (Content API) API trigger to run a workflow which integrates with the Pocket API. Pipedream's integration platform allows you to integrate Ghost.org (Content API) and Pocket remarkably fast. Free for developers.

Save To Later with Pocket API on New Author from Ghost.org (Content API) API
Ghost.org (Content API) + Pocket
 
Try it
Find author with Ghost.org (Content API) API on New Archived item from Pocket API
Pocket + Ghost.org (Content API)
 
Try it
Find author with Ghost.org (Content API) API on New Favorited item from Pocket API
Pocket + Ghost.org (Content API)
 
Try it
Find author with Ghost.org (Content API) API on New Item from Pocket API
Pocket + Ghost.org (Content API)
 
Try it
Find author with Ghost.org (Content API) API on New Tagged item from Pocket API
Pocket + Ghost.org (Content API)
 
Try it
New Archived item from the Pocket API

Emit new event for each archived item.

 
Try it
New Author from the Ghost.org (Content API) API

Emit new event for each new author added on a site.

 
Try it
New Favorited item from the Pocket API

Emit new event for each favorited item.

 
Try it
New Item from the Pocket API

Emit new event for each added item.

 
Try it
New Tagged item from the Pocket API

Emit new event for each tagged item.

 
Try it
Find author with the Ghost.org (Content API) API

Find an author. See the docs here.

 
Try it
Save To Later with the Pocket API

Save articles, videos, images and URLs to your Pocket list. See docs here

 
Try it

Overview of Ghost.org (Content API)

The Ghost.org (Content API) unlocks the power of content automation and integration for developers and content creators. With this API, you can programmatically access and manipulate your blog's posts, tags, authors, and settings. It's perfect for streamlining content workflows, from syncing with other platforms to analyzing and optimizing your content strategy.

Connect Ghost.org (Content API)

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: {
    ghost_org_content_api: {
      type: "app",
      app: "ghost_org_content_api",
    }
  },
  async run({steps, $}) {
    return await axios($, {
      url: `https://${this.ghost_org_content_api.$auth.admin_domain}/ghost/api/v3/content/posts/`,
      params: {
        key: `${this.ghost_org_content_api.$auth.content_api_key}`,
      },
    })
  },
})

Overview of Pocket

Pocket's API on Pipedream allows for the automation of content curation workflows. Users can add, retrieve, and organize articles, videos, or other content they want to view later. By leveraging the API, you can create systems for tagging and sorting saved items, integrating them with other services for further processing or sharing. This could be useful for content creators, researchers, or anyone needing to manage a large influx of information efficiently.

Connect Pocket

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
import { axios } from "@pipedream/platform"
export default defineComponent({
  props: {
    pocket: {
      type: "app",
      app: "pocket",
    }
  },
  async run({steps, $}) {
    const pocketReq = {
      method: "post",
      url: "/v3/get",
      data: {
        count: 10,
        access_token: this.pocket.$auth.oauth_access_token,
      },
    }
    // proxy pocket request
    return await axios($, {
      url: "https://enkogw2a5epb176.m.pipedream.net",
      params: {
        http_respond: 1,
      },
      data: pocketReq,
    })
  },
})