What do you want to automate

with screenshot.fyi and Aryn?

Prompt, edit and deploy AI agents that connect to screenshot.fyi, Aryn 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 Screenshot with the screenshot.fyi API

Takes a screenshot of a webpage using Screenshot.fyi. See the documentation

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

Connect screenshot.fyi

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: {
    screenshot_fyi: {
      type: "app",
      app: "screenshot_fyi",
    }
  },
  async run({steps, $}) {
    return await axios($, {
      url: `https://screenshot.fyi/api/take`,
      params: {
        url: `https://pipedream.com`,
        accessKey: `${this.screenshot_fyi.$auth.access_key}`,
      },
    })
  },
})

Connect Aryn

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
import { axios } from "@pipedream/platform";
import FormData from "form-data";
import request from "request";

export default defineComponent({
  props: {
    aryn: {
      type: "app",
      app: "aryn",
    }
  },
  async run({steps, $}) {
    const data = new FormData();
    data.append("pdf", request("https://www.learningcontainer.com/wp-content/uploads/2019/09/sample-pdf-file.pdf"));    
    return await axios($,{
      method: "POST",
      url: `https://api.aryn.cloud/v1/document/partition`,
      headers: {
        "Content-Type": `multipart/form-data`,
        Authorization: `Bearer ${this.aryn.$auth.api_key}`,
      },   
      data         
    });    
  },
})

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