What do you want to automate

with Codemagic and CaptureKit?

Prompt, edit and deploy AI agents that connect to Codemagic, CaptureKit 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 Application with the Codemagic API

Creates a new application codemagic. See the documentation

 
Try it
Capture Screenshot with the CaptureKit API

Capture a high-quality image of any webpage. See the documentation

 
Try it
Create Variable with the Codemagic API

Create a variable in the specified workflow. See the documentation

 
Try it
Scrape Content with the CaptureKit API

Extract structured data from any webpage, including metadata, links, and raw HTML. See the documentation

 
Try it
List Applications with the Codemagic API

List applications in codemagic. See the documentation

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

Overview of Codemagic

Codemagic API offers a way to automate your mobile app development and delivery processes. By integrating with Pipedream, you can invoke workflows that react to events in your Git repository, automate build tasks, deploy applications, send notifications, and more. It's a powerful ally for developers looking to streamline the CI/CD pipeline for their mobile applications.

Connect Codemagic

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: {
    codemagic: {
      type: "app",
      app: "codemagic",
    }
  },
  async run({steps, $}) {
    return await axios($, {
      url: `https://api.codemagic.io/apps`,
      headers: {
        "x-auth-token": `${this.codemagic.$auth.api_token}`,
      },
    })
  },
})

Connect CaptureKit

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: {
    capturekit: {
      type: "app",
      app: "capturekit",
    }
  },
  async run({steps, $}) {
    return await axios($, {
      url: `https://api.capturekit.dev/capture`,
      headers: {
        "x-access-key": `${this.capturekit.$auth.access_key}`,
      },
      params: {
        url: `https://pipedream.com`,
      },
    })
  },
})

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