What do you want to automate

with swiDOC and Crypto APIs by Alternative?

Prompt, edit and deploy AI agents that connect to swiDOC, Crypto APIs by Alternative and 3,000+ 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
Integrate the swiDOC API with the Crypto APIs by Alternative API
Setup the swiDOC API trigger to run a workflow which integrates with the Crypto APIs by Alternative API. Pipedream's integration platform allows you to integrate swiDOC and Crypto APIs by Alternative remarkably fast. Free for developers.

Connect swiDOC

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
29
30
31
32
33
34
35
36
37
38
import { axios } from "@pipedream/platform"
export default defineComponent({
  props: {
    swidoc: {
      type: "app",
      app: "swidoc",
    }
  },
  async run({ steps, $ }) {
    const data = {
      "fileContent": "UEsDBBQABgAIAAAAIQDfpNJsWgEAACA...",
      "metadata": {
        "fileName": "2024 Amazon Bill.pdf",
        "filePath": "2024/bills/Amazon",
        "description": "Bill for the book 1984 by George Orwell",
        "tags": [
          "bill"
        ],
        "archiveDuration": 31536000000,
        "searchAttributes": [
          {
            "name": "Department",
            "value": "Sales"
          }
        ]
      }
    };
    return await axios($, {
      method: `POST`,
      url: `https://app.swidoc.ch/api/v1/documents`,
      headers: {
        Authorization: `Bearer ${this.swidoc.$auth.api_key}`,
      },
      data
    })
  },
})

Connect Crypto APIs by Alternative

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
import { axios } from "@pipedream/platform"
export default defineComponent({
  props: {
    crypto_apis_by_alternative: {
      type: "app",
      app: "crypto_apis_by_alternative",
    }
  },
  async run({steps, $}) {
    return await axios($, {
      url: `https://api.alternative.me/fng/`,
    })
  },
})

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