Apollo.io

The leading data-first sales acceleration platform.

Integrate the Apollo.io API with the Python API

Setup the Apollo.io API trigger to run a workflow which integrates with the Python API. Pipedream's integration platform allows you to integrate Apollo.io and Python remarkably fast. Free for developers.

Run Python Code with Python API on Account Created from Apollo.io API
Apollo.io + Python
 
Try it
Run Python Code with Python API on Account Updated from Apollo.io API
Apollo.io + Python
 
Try it
Run Python Code with Python API on Contact Created from Apollo.io API
Apollo.io + Python
 
Try it
Run Python Code with Python API on Contact Updated from Apollo.io API
Apollo.io + Python
 
Try it
Account Created from the Apollo.io API

Triggers when an account is created. See the documentation

 
Try it
Account Updated from the Apollo.io API

Triggers when an account is updated. See the documentation

 
Try it
Contact Created from the Apollo.io API

Triggers when a contact is created. See the documentation

 
Try it
Contact Updated from the Apollo.io API

Triggers when a contact is updated. See the documentation

 
Try it
Run Python Code with the Python API

Write Python and use any of the 350k+ PyPi packages available. Refer to the Pipedream Python docs to learn more.

 
Try it
Add Contacts to Sequence with the Apollo.io API

Adds one or more contacts to a sequence in Apollo.io. See the documentation

 
Try it
Create Account with the Apollo.io API

Creates a new account in Apollo.io. See the documentation

 
Try it
Create Contact with the Apollo.io API

Creates a new contact in Apollo.io. See the documentation

 
Try it
Create Opportunity with the Apollo.io API

Creates a new opportunity in Apollo.io. See the documentation

 
Try it

Overview of Apollo.io

The Apollo.io API on Pipedream enables you to automate sales processes by giving you programmatic access to your Apollo.io data. Through this API, you can manage leads, contacts, and opportunities, or sync data with your CRM. Pipedream's serverless platform allows you to connect Apollo.io with hundreds of other apps to automate workflows like lead enrichment, data syncing between apps, and triggering personalized communication based on prospect actions.

Connect Apollo.io

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
import { axios } from "@pipedream/platform"
export default defineComponent({
  props: {
    apollo_io: {
      type: "app",
      app: "apollo_io",
    }
  },
  async run({steps, $}) {
    return await axios($, {
      url: `https://api.apollo.io/v1/users/search`,
      headers: {
        "Cache-Control": `no-cache`,
        "Content-Type": `application/json`,
      },
      params: {
        api_key: `${this.apollo_io.$auth.api_key}`,
      },
    })
  },
})

Overview of Python

Develop, run and deploy your Python code in Pipedream workflows. Integrate seamlessly between no-code steps, with connected accounts, or integrate Data Stores and manipulate files within a workflow.

This includes installing PyPI packages, within your code without having to manage a requirements.txt file or running pip.

Below is an example of using Python to access data from the trigger of the workflow, and sharing it with subsequent workflow steps:

Connect Python

1
2
3
4
5
def handler(pd: "pipedream"):
  # Reference data from previous steps
  print(pd.steps["trigger"]["context"]["id"])
  # Return data for use in future steps
  return {"foo": {"test":True}}