What do you want to automate

with Fingertip and Pencil Spaces?

Prompt, edit and deploy AI agents that connect to Fingertip, Pencil Spaces 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 A Space with the Pencil Spaces API

Create a new space in Pencil Spaces. See the documentation

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

Connect Fingertip

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: {
    fingertip: {
      type: "app",
      app: "fingertip",
    }
  },
  async run({steps, $}) {
    return await axios($, {
      url: `https://ap1-production-creator-api.fingertip.com/api/v1/ping`,
      headers: {
        Authorization: `Bearer ${this.fingertip.$auth.api_key}`,
        "Accept": `application/json`,
      },
    })
  },
})

Connect Pencil Spaces

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: {
    pencil_spaces: {
      type: "app",
      app: "pencil_spaces",
    }
  },
  async run({steps, $}) {
    return await axios($, {
      url: `${this.pencil_spaces.$auth.api_url}users`,
      headers: {
        Authorization: `Bearer ${this.pencil_spaces.$auth.api_key}`,
      },
    })
  },
})

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