Introduction

What is TheirStackProduct updatesBlog

Data

Job Data
Technographic Data
Company Data
Buying Intent Data

Product

App
APIWebhooksDatasets

Pricing and Billing

Pricing
Affiliate Program

Integrations

ClayMakeN8N

Other

Users and Teams
TheirStackTheirStack Logo
Log inSign up
DocumentationAPI ReferenceWebhooksDatasetsMCPGuides

Make

Learn how to connect TheirStack with Make.com — pull job postings and company data on-demand via HTTP modules, or automate real-time notifications through webhooks.

Make.com is one of the most powerful no-code platforms. It lets you connect thousands of apps and automate workflows without writing any code.

There are two ways to integrate TheirStack with Make:

  • HTTP module — Pull job postings, company data, or technographic information on-demand by calling the TheirStack API directly from a Make scenario.
  • Webhooks — Receive real-time notifications whenever new jobs or companies match your search criteria.

Pull data on-demand with the HTTP module

Use Make's HTTP module to call the TheirStack API directly. This is ideal for scenarios that run on a schedule (e.g., every morning, pull new jobs matching your criteria) or that enrich data from other modules.

Quick setup from TheirStack App

The fastest way to get started is to copy a pre-configured HTTP module directly from the TheirStack app:

Go to app.theirstack.com, run a job or company search with your desired filters, and click the API button.

API button on job search page

Select the Make tab and click Copy HTTP module. This copies a fully configured Make HTTP module to your clipboard — including your API key, headers, and search filters.

Click the Make tab

Copy HTTP module

Go to Make.com, open your scenario, and paste with CTRL+V (Windows) or CMD+V (Mac). The HTTP module will appear pre-configured and ready to run.

Paste HTTP module into Make

Manual setup

If you prefer to configure the HTTP module manually:

Create a new scenario on Make.com or open an existing one.

Add an HTTP - Make a request module to your scenario.

Configure the module with the following settings:

  • URL: https://api.theirstack.com/v0/jobs/search (or /v0/companies/search for companies)
  • Method: POST
  • Headers:
    • Authorization: Bearer YOUR_API_KEY (get your API key)
    • Content-Type: application/json
  • Body type: Raw
  • Content type: JSON (application/json)
  • Request content: Your search filters as JSON, for example:
    {
      "job_title_or": ["software engineer", "developer"],
      "posted_at_max_age_days": 7,
      "limit": 25
    }

Click Run once to test the module and inspect the response.

See the API Reference for all available endpoints and filter options.

Real-time notifications with webhooks

Use TheirStack webhooks to push data to Make automatically whenever new jobs or companies match your criteria. This is ideal for real-time alerts, CRM updates, and Slack notifications.

Send a Slack message for every new job found

The easiest way to get real-time Slack notifications is to combine a TheirStack Saved Search with a webhook:

Get saved search

Get jobs meeting saved search criteria

Send Slack message

Make Scenario

Import the Make blueprint

We have created a template to help you configure your scenario. Click on Import Blueprint and import this blueprint.

Import Blueprint

For more details on setting up webhooks, see:

  • How to set up a webhook
  • How to send jobs to Slack

Use cases

  • Scheduled job monitoring: Run a scenario on a schedule to pull new jobs matching your criteria, then filter and send to Slack, email, or a spreadsheet.
  • CRM enrichment: Pull technographic data about companies in your CRM and route enriched records back using Make's CRM modules (HubSpot, Salesforce, etc.).
  • Real-time job alerts: Use webhooks to trigger a scenario the moment a new job is posted, and send it to your team via Slack or email.

Frequently asked questions

What is the difference between the HTTP module and webhook approach?

The HTTP module lets you pull data on-demand — you control when and how often data is fetched. The webhook approach pushes data to Make in real-time whenever new results match your saved search. Use webhooks for instant alerts, and HTTP modules for scheduled or enrichment workflows.

How do I handle pagination in Make?

The TheirStack API supports limit and page parameters. To paginate through results in Make, use a Repeater module to loop through pages, incrementing the page parameter on each iteration until no more results are returned.

How is this guide?

Last updated on

Clay

Learn how to add a new column in a Clay table with TheirStack data or create an entirely new table in Clay with live job posting and technographic data from TheirStack.

N8N

Learn how to connect TheirStack with N8N — pull job postings and company data via HTTP Request nodes, or automate real-time notifications through webhooks.

On this page

Pull data on-demand with the HTTP module
Quick setup from TheirStack App
Manual setup
Real-time notifications with webhooks
Send a Slack message for every new job found
Import the Make blueprint
Use cases
Frequently asked questions
What is the difference between the HTTP module and webhook approach?
How do I handle pagination in Make?