Escrow.com

Online escrow service

Go to site
Explore
/
Apps
/
Escrow.com

Escrow.com API Integrations

Build and run workflows using the Escrow.com API. Use 1000s of source-available triggers and actions across 1000+ apps. Or write custom code to integrate any app or API in seconds.

Overview

The Escrow.com API allows developers to create applications that can connect to the Escrow.com platform and perform various tasks.

Some examples of what you can build using the Escrow.com API include:

  • An application that allows users to buy and sell items using Escrow.com
  • A tool that helps users to manage their Escrow.com account
  • A platform that allows developers to create and manage their own Escrow.com integrations
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: {
    escrow: {
      type: "app",
      app: "escrow",
    }
  },
  async run({steps, $}) {
    return await axios($, {
      url: `https://api.escrow.com/2017-09-01/customer/me`,
      auth: {
        username: `${this.escrow.$auth.email}`,
        password: `${this.escrow.$auth.api_key}`,
      },
    })
  },
})

Choose an API to Connect with Escrow.com API

1
-
12
of
1000+
apps by most popular

Authentication

Escrow.com uses API keys for authentication. When you connect your Escrow.com account, Pipedream securely stores the keys so you can easily authenticate to Escrow.com APIs in both code and no-code steps.

Escrow.com recommends using API keys in production. Create an api_key here. See docs.