What do you want to automate

with Azure API for FHIR and Anchor Browser?

Prompt, edit and deploy AI agents that connect to Azure API for FHIR, Anchor Browser 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 Profile with the Anchor Browser API

Creates a new profile from a session. A Profile stores cookies, local storage, and cache. See the documentation

 
Try it
Delete Profile with the Anchor Browser API

Deletes an existing profile by its name. See the documentation

 
Try it
Start Browser with the Anchor Browser API

Allocates a new browser session for the user, with optional configurations for ad-blocking, captcha solving, proxy usage, and idle timeout. See the documentation

 
Try it
Update Profile with the Anchor Browser API

Updates the description or data of an existing profile using a session. See the documentation

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

Connect Azure API for FHIR

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: {
    azure_api_for_fhir: {
      type: "app",
      app: "azure_api_for_fhir",
    }
  },
  async run({steps, $}) {
    return await axios($, {
      url: `https://${this.azure_api_for_fhir.$auth.account_name}.azurehealthcareapis.com/Patient`,
      headers: {
        Authorization: `Bearer ${this.azure_api_for_fhir.$auth.oauth_access_token}`,
      },
    })
  },
})

Connect Anchor Browser

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: {
    anchor_browser: {
      type: "app",
      app: "anchor_browser",
    }
  },
  async run({steps, $}) {
    return await axios($, {
      url: `https://api.anchorbrowser.io/api/profiles`,
      headers: {
        "anchor-api-key": `${this.anchor_browser.$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