What do you want to automate

with SuperPhone and Typefully?

Prompt, edit and deploy AI agents that connect to SuperPhone, Typefully and 2,500+ other apps in seconds.

Trusted by 1,000,000+ developers from startups to Fortune 500 companies

Adyen logo
Appcues logo
Bandwidth logo
Checkr logo
ChartMogul logo
Dataminr logo
Gopuff logo
Gorgias logo
LinkedIn logo
Logitech logo
Replicated logo
Rudderstack logo
SAS logo
Scale AI logo
Webflow logo
Warner Bros. logo
Adyen logo
Appcues logo
Bandwidth logo
Checkr logo
ChartMogul logo
Dataminr logo
Gopuff logo
Gorgias logo
LinkedIn logo
Logitech logo
Replicated logo
Rudderstack logo
SAS logo
Scale AI logo
Webflow logo
Warner Bros. logo
Create Draft with Typefully API on New Contact Created from SuperPhone API
SuperPhone + Typefully
 
Try it
Create Draft with Typefully API on New Message Received from SuperPhone API
SuperPhone + Typefully
 
Try it
Create New Contact with SuperPhone API on New Draft Published from Typefully API
Typefully + SuperPhone
 
Try it
Create New Contact with SuperPhone API on New Draft Scheduled from Typefully API
Typefully + SuperPhone
 
Try it
Schedule Draft Next Slot with Typefully API on New Contact Created from SuperPhone API
SuperPhone + Typefully
 
Try it
New Contact Created from the SuperPhone API

Triggered when a new contact is created. See the documentation

 
Try it
New Draft Published from the Typefully API

Emit new event when a draft is published to Twitter via Typefully.

 
Try it
New Message Received from the SuperPhone API

Triggered when a new message is received. See the documentation

 
Try it
New Draft Scheduled from the Typefully API

Emit new event when a draft is scheduled for publication.

 
Try it
Create New Contact with the SuperPhone API

Create a new contact. See the documentation

 
Try it
Create Draft with the Typefully API

Creates a new draft in Typefully. See the documentation

 
Try it
Send Message with the SuperPhone API

Send a message to a contact. See the documentation

 
Try it
Schedule Draft with the Typefully API

Schedules a draft for publication at a specific date and time. See the documentation

 
Try it
Update Contact with the SuperPhone API

Update an existing contact. See the documentation

 
Try it
Integrate the SuperPhone API with the Typefully API
Setup the SuperPhone API trigger to run a workflow which integrates with the Typefully API. Pipedream's integration platform allows you to integrate SuperPhone and Typefully remarkably fast. Free for developers.

Overview of SuperPhone

SuperPhone is a communication platform that allows users to manage text and call campaigns through a personal phone number. Leveraging the SuperPhone API on Pipedream, you can automate interactions with contacts, send personalized messages, and get analytics on message deliverability and engagement. With Pipedream's serverless platform, you can trigger workflows on various events, like receiving a new message or a specific keyword, and connect to countless other apps to extend functionality.

Connect SuperPhone

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
import { axios } from "@pipedream/platform"
export default defineComponent({
  props: {
    superphone: {
      type: "app",
      app: "superphone",
    }
  },
  async run({steps, $}) {
    const data = {
      "query": `{{your_query}}`, // such as "query testAuth {defaultForm {id}}"
    }
    return await axios($, {
      method: "post",
      url: `https://api.${this.superphone.$auth.environment}/graphql`,
      headers: {
        Authorization: `Bearer ${this.superphone.$auth.api_key}`,
        "Accept": `application/json`,
      },
      data,
    })
  },
})

Connect Typefully

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
import { axios } from "@pipedream/platform"
export default defineComponent({
  props: {
    typefully: {
      type: "app",
      app: "typefully",
    }
  },
  async run({steps, $}) {
    return await axios($, {
      url: `https://api.typefully.com/v1/notifications/`,
      headers: {
        "x-api-key": `${this.typefully.$auth.api_key}`,
      },
      params: {
        kind: `activity`,
      },
    })
  },
})

Trusted by 1,000,000+ developers from startups to Fortune 500 companies

Adyen logo
Appcues logo
Bandwidth logo
Checkr logo
ChartMogul logo
Dataminr logo
Gopuff logo
Gorgias logo
LinkedIn logo
Logitech logo
Replicated logo
Rudderstack logo
SAS logo
Scale AI logo
Webflow logo
Warner Bros. logo
Adyen logo
Appcues logo
Bandwidth logo
Checkr logo
ChartMogul logo
Dataminr logo
Gopuff logo
Gorgias logo
LinkedIn logo
Logitech logo
Replicated logo
Rudderstack logo
SAS logo
Scale AI logo
Webflow logo
Warner Bros. logo