Ghost.org (Content API)

Open source publishing platform

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

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

Find author with Ghost.org (Content API) API on New Message (Instant) from Discord API
Discord + Ghost.org (Content API)
 
Try it
Find author with Ghost.org (Content API) API on Message Deleted (Instant) from Discord API
Discord + Ghost.org (Content API)
 
Try it
Find author with Ghost.org (Content API) API on New Command Received (Instant) from Discord API
Discord + Ghost.org (Content API)
 
Try it
Find author with Ghost.org (Content API) API on New Guild Member (Instant) from Discord API
Discord + Ghost.org (Content API)
 
Try it
Find author with Ghost.org (Content API) API on Reaction Added (Instant) from Discord API
Discord + Ghost.org (Content API)
 
Try it
New Message (Instant) from the Discord API

Emit new event for each message posted to one or more channels in a Discord server

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

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

 
Try it
Message Deleted (Instant) from the Discord API

Emit new event for each message deleted

 
Try it
New Command Received (Instant) from the Discord API

Emit new event for each command posted to one or more channels in a Discord server

 
Try it
New Guild Member (Instant) from the Discord API

Emit new event for each new member added to a guild

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

Find an author. See the docs here.

 
Try it
Send Message with the Discord API

Send a simple message to a Discord channel

 
Try it
Send Message (Advanced) with the Discord API

Send a simple or structured message (using embeds) to a Discord channel

 
Try it
Send Message With File with the Discord API

Post a message with an attached file

 
Try it

Overview of Ghost.org (Content API)

Ghost.org provides a content API that enables developers to build various types
of applications and tools. Some example applications that can be built using
the Ghost.org API include:

  • A content management system (CMS) for publishing content
  • A forum or discussion board
  • A blogroll or list of blogs
  • A social media aggregator
  • A news feed or news aggregator
  • An e-commerce store

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 Discord

The Pipedream Discord app enables you to build event-driven workflows that interact with the Discord API. When you authorize the Pipedream app's access to your guilds, you can use Pipedream workflows to perform common Discord actions, or write your own code against the Discord API.

Connect Discord

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
import { axios } from "@pipedream/platform"
export default defineComponent({
  props: {
    discord: {
      type: "app",
      app: "discord",
    }
  },
  async run({steps, $}) {
    return await axios($, {
      url: `https://discord.com/api/users/@me`,
      headers: {
        Authorization: `Bearer ${this.discord.$auth.oauth_access_token}`,
        "accept": `application/json`,
      },
    })
  },
})