Apollo icon

Apollo

Interact with Apollo API

Overview

This node interacts with the Apollo API to retrieve job postings for a specified organization. It is useful when you want to programmatically access and list job openings from an organization's profile on Apollo. Typical use cases include integrating job posting data into recruitment workflows, aggregating job listings for analytics, or syncing job data with other HR or CRM systems.

For example, you can use this node to fetch the first page of job postings for a company by providing its organization ID, then process or display these jobs in your application or workflow.

Properties

Name Meaning
Organization ID The unique identifier of the organization whose job postings you want to retrieve.
Page The page number of results to retrieve (for pagination). Defaults to 1.
Per Page The number of job postings to return per page. Defaults to 10.

Output

The node outputs JSON data containing the retrieved job postings from the Apollo API. Each item in the output corresponds to a job posting associated with the specified organization. The structure typically includes details such as job title, description, location, and other relevant metadata provided by Apollo.

No binary data output is expected from this operation.

Dependencies

  • Requires an API key credential for authenticating with the Apollo API.
  • The base URL defaults to https://api.apollo.io but can be overridden via credentials configuration.
  • Proper network access to Apollo's API endpoints is necessary.

Troubleshooting

  • Missing or invalid Organization ID: Ensure that the "Organization ID" property is correctly set and corresponds to a valid organization in Apollo.
  • API authentication errors: Verify that the API key credential is correctly configured and has sufficient permissions.
  • Pagination issues: If no results are returned, check if the requested page number exceeds the available pages.
  • Network or API errors: Confirm network connectivity and that the Apollo API service is operational.

Links and References

Discussion