# Signalbase Real Time Hiring Signals (`signalbase/signalbase-hiring`) Actor

Real-time LinkedIn hiring signals with full company context. 679k+ active job postings detected and growing every minute. Built for prospecting on growing companies, AI SDR triggers, and GTM teams.

- **URL**: https://apify.com/signalbase/signalbase-hiring.md
- **Developed by:** [Signalbase](https://apify.com/signalbase) (community)
- **Categories:** Jobs, Lead generation, Developer tools
- **Stats:** 16 total users, 7 monthly users, 100.0% runs succeeded, 0 bookmarks
- **User rating**: No ratings yet

## Pricing

from $10.00 / 1,000 results

This Actor is paid per event. You are not charged for the Apify platform usage, but only a fixed price for specific events.

Learn more: https://docs.apify.com/platform/actors/running/actors-in-store#pay-per-event

## What's an Apify Actor?

Actors are a software tools running on the Apify platform, for all kinds of web data extraction and automation use cases.
In Batch mode, an Actor accepts a well-defined JSON input, performs an action which can take anything from a few seconds to a few hours,
and optionally produces a well-defined JSON output, datasets with results, or files in key-value store.
In Standby mode, an Actor provides a web server which can be used as a website, API, or an MCP server.
Actors are written with capital "A".

## How to integrate an Actor?

If asked about integration, you help developers integrate Actors into their projects.
You adapt to their stack and deliver integrations that are safe, well-documented, and production-ready.
The best way to integrate Actors is as follows.

In JavaScript/TypeScript projects, use official [JavaScript/TypeScript client](https://docs.apify.com/api/client/js.md):

```bash
npm install apify-client
```

In Python projects, use official [Python client library](https://docs.apify.com/api/client/python.md):

```bash
pip install apify-client
```

In shell scripts, use [Apify CLI](https://docs.apify.com/cli/docs.md):

````bash
# MacOS / Linux
curl -fsSL https://apify.com/install-cli.sh | bash
# Windows
irm https://apify.com/install-cli.ps1 | iex
```bash

In AI frameworks, you might use the [Apify MCP server](https://docs.apify.com/platform/integrations/mcp.md).

If your project is in a different language, use the [REST API](https://docs.apify.com/api/v2.md).

For usage examples, see the [API](#api) section below.

For more details, see Apify documentation as [Markdown index](https://docs.apify.com/llms.txt) and [Markdown full-text](https://docs.apify.com/llms-full.txt).


# README

## SignalBase Real Time Hiring

Real-time hiring signals. Track open job postings with company context, seniority levels, departments, and location data.

### Overview

This is a Standby-mode Apify Actor that proxies requests to the SignalBase Hiring API (`/signals/hiring`). Once running, send GET requests to the container URL with query parameters to receive JSON responses.

### Query Parameters (Filters)

| Parameter | Description |
|-----------|-------------|
| `page` | Page number for pagination |
| `limit` | Number of results per page |
| `dateFrom` | Filter by start date |
| `dateTo` | Filter by end date |
| `date_preset` | Preset date range |
| `search` | Full-text search |
| `countries` | Filter by country codes |
| `states` | Filter by state/region |
| `city` | Filter by city |
| `categories` | Filter by job categories |
| `subcategories` | Filter by subcategories |
| `positions` | Filter by position titles |
| `departments` | Filter by departments |
| `seniorities` | Filter by seniority levels |
| `team_size` | Filter by company size |
| `applicants` | Filter by applicant count |
| `sort_by` | Sort field |
| `sort_order` | Sort direction (asc/desc) |
| `count` | Return count only |

### Example Response

```json
{
  "success": true,
  "data": [
    {
      "id": "05065617-ec6e-4276-89f5-b1f8082d8302",
      "jobId": "4345698634",
      "jobUrl": "https://www.linkedin.com/jobs/view/commercial-lending-intern-dallas-at-origin-bank-4345698634",
      "title": "Commercial Lending Intern - Dallas",
      "location": "Dallas, TX, US",
      "city": "Dallas",
      "region": "TX",
      "country": "US",
      "datePosted": "2026-02-25T10:49:04.000Z",
      "validThrough": "2026-04-21T19:19:23.000Z",
      "employmentType": "PART_TIME",
      "seniorityLevel": "Internship",
      "jobFunction": "Finance and Sales",
      "industries": "Banking",
      "numApplicants": "200+",
      "descriptionText": "Your Career. Your Story...",
      "createdAt": "2026-03-17T08:22:25.108Z",
      "companyId": "ad3ac0b4-96c8-4232-9dd3-95cc5a560e76",
      "companyName": "Origin Bank",
      "companyWebsite": "origin.bank",
      "companyIndustry": "Banking",
      "companyCountry": "US",
      "companyEmployeeCount": 710,
      "companyFoundedYear": 1912,
      "companyLogoUrl": "https://images.trysignalbase.com/Origin Bank.png",
      "isFreeAccess": true
    }
  ],
  "pagination": {
    "currentPage": 1,
    "totalPages": 176600,
    "totalCount": 176600,
    "hasNextPage": true,
    "hasPreviousPage": false
  },
  "meta": {
    "endpoint": "signals.hiring",
    "creditsUsed": 1
  }
}
````

### Pricing

This Actor uses **pay-per-event (PPE)** billing. Each successful API call is charged as one `api-call` event. Failed requests are not charged.

### Support

- [SignalBase Documentation](https://docs.trysignalbase.com)
- [SignalBase Website](https://www.trysignalbase.com)

# Actor input Schema

## `page` (type: `integer`):

Page number for pagination.

## `limit` (type: `integer`):

Number of results per page (max 100).

## `dateFrom` (type: `string`):

Filter signals from this date (YYYY-MM-DD).

## `dateTo` (type: `string`):

Filter signals up to this date (YYYY-MM-DD).

## `date_preset` (type: `string`):

Relative date shorthand. Takes precedence over Date From / Date To.

## `search` (type: `string`):

Free-text search across company name, job title, and more.

## `countries` (type: `string`):

Comma-separated country codes (e.g. US,GB,DE).

## `categories` (type: `string`):

Pipe-separated company categories (e.g. Technology|Healthcare).

## `subcategories` (type: `string`):

Comma-separated subcategory IDs: ai, saas, cybersecurity, web3, devtools, fintech, analytics, ecommerce, marketing, sales, healthcare, biotechnology, education, real estate, energy, logistics, manufacturing, retail, etc.

## `industry` (type: `string`):

Comma-separated exact industry names.

## `company_name` (type: `string`):

Search by company name (partial match).

## `positions` (type: `string`):

Comma-separated positions: ceo, cto, cfo, coo, vp of engineering, vp of sales, vp of marketing, head of product, head of growth, head of engineering, engineering manager, product manager, sales manager, marketing manager, founder, co-founder.

## `departments` (type: `string`):

Comma-separated: marketing, sales, engineering, product, design, operations, finance, people, data, customer\_success, growth, legal.

## `seniorities` (type: `string`):

Comma-separated: founder, c\_level, vp, director, head, lead, manager.

## `states` (type: `string`):

Comma-separated US state codes (e.g. CA,NY,TX).

## `city` (type: `string`):

Free-text city search.

## `team_size` (type: `string`):

Comma-separated ranges: 1-10, 11-50, 51-200, 201-1000, 1000-plus.

## `applicants` (type: `string`):

Comma-separated ranges: 0-25, 26-50, 51-100, 101-200, 201-plus.

## `employee_count_min` (type: `integer`):

Minimum company employee count.

## `employee_count_max` (type: `integer`):

Maximum company employee count.

## `founded_year_min` (type: `integer`):

Minimum company founded year.

## `founded_year_max` (type: `integer`):

Maximum company founded year.

## `sort_by` (type: `string`):

Field to sort results by (e.g. datePosted, numApplicants).

## `sort_order` (type: `string`):

Sort direction.

## Actor input object example

```json
{
  "page": 1,
  "limit": 50,
  "sort_order": "desc"
}
```

# Actor output Schema

## `apiServer` (type: `string`):

Live HTTP server for the /signals/hiring endpoint. Append query parameters for filtering.

# API

You can run this Actor programmatically using our API. Below are code examples in JavaScript, Python, and CLI, as well as the OpenAPI specification and MCP server setup.

## JavaScript example

```javascript
import { ApifyClient } from 'apify-client';

// Initialize the ApifyClient with your Apify API token
// Replace the '<YOUR_API_TOKEN>' with your token
const client = new ApifyClient({
    token: '<YOUR_API_TOKEN>',
});

// Prepare Actor input
const input = {};

// Run the Actor and wait for it to finish
const run = await client.actor("signalbase/signalbase-hiring").call(input);

// Fetch and print Actor results from the run's dataset (if any)
console.log('Results from dataset');
console.log(`💾 Check your data here: https://console.apify.com/storage/datasets/${run.defaultDatasetId}`);
const { items } = await client.dataset(run.defaultDatasetId).listItems();
items.forEach((item) => {
    console.dir(item);
});

// 📚 Want to learn more 📖? Go to → https://docs.apify.com/api/client/js/docs

```

## Python example

```python
from apify_client import ApifyClient

# Initialize the ApifyClient with your Apify API token
# Replace '<YOUR_API_TOKEN>' with your token.
client = ApifyClient("<YOUR_API_TOKEN>")

# Prepare the Actor input
run_input = {}

# Run the Actor and wait for it to finish
run = client.actor("signalbase/signalbase-hiring").call(run_input=run_input)

# Fetch and print Actor results from the run's dataset (if there are any)
print("💾 Check your data here: https://console.apify.com/storage/datasets/" + run["defaultDatasetId"])
for item in client.dataset(run["defaultDatasetId"]).iterate_items():
    print(item)

# 📚 Want to learn more 📖? Go to → https://docs.apify.com/api/client/python/docs/quick-start

```

## CLI example

```bash
echo '{}' |
apify call signalbase/signalbase-hiring --silent --output-dataset

```

## MCP server setup

```json
{
    "mcpServers": {
        "apify": {
            "command": "npx",
            "args": [
                "mcp-remote",
                "https://mcp.apify.com/?tools=signalbase/signalbase-hiring",
                "--header",
                "Authorization: Bearer <YOUR_API_TOKEN>"
            ]
        }
    }
}

```

## OpenAPI specification

```json
{
    "openapi": "3.0.1",
    "info": {
        "title": "Signalbase Real Time Hiring Signals",
        "description": "Real-time LinkedIn hiring signals with full company context. 679k+ active job postings detected and growing every minute. Built for prospecting on growing companies, AI SDR triggers, and GTM teams.",
        "version": "1.0",
        "x-build-id": "Pw9FguuZHIeeurgTN"
    },
    "servers": [
        {
            "url": "https://api.apify.com/v2"
        }
    ],
    "paths": {
        "/acts/signalbase~signalbase-hiring/run-sync-get-dataset-items": {
            "post": {
                "operationId": "run-sync-get-dataset-items-signalbase-signalbase-hiring",
                "x-openai-isConsequential": false,
                "summary": "Executes an Actor, waits for its completion, and returns Actor's dataset items in response.",
                "tags": [
                    "Run Actor"
                ],
                "requestBody": {
                    "required": true,
                    "content": {
                        "application/json": {
                            "schema": {
                                "$ref": "#/components/schemas/inputSchema"
                            }
                        }
                    }
                },
                "parameters": [
                    {
                        "name": "token",
                        "in": "query",
                        "required": true,
                        "schema": {
                            "type": "string"
                        },
                        "description": "Enter your Apify token here"
                    }
                ],
                "responses": {
                    "200": {
                        "description": "OK"
                    }
                }
            }
        },
        "/acts/signalbase~signalbase-hiring/runs": {
            "post": {
                "operationId": "runs-sync-signalbase-signalbase-hiring",
                "x-openai-isConsequential": false,
                "summary": "Executes an Actor and returns information about the initiated run in response.",
                "tags": [
                    "Run Actor"
                ],
                "requestBody": {
                    "required": true,
                    "content": {
                        "application/json": {
                            "schema": {
                                "$ref": "#/components/schemas/inputSchema"
                            }
                        }
                    }
                },
                "parameters": [
                    {
                        "name": "token",
                        "in": "query",
                        "required": true,
                        "schema": {
                            "type": "string"
                        },
                        "description": "Enter your Apify token here"
                    }
                ],
                "responses": {
                    "200": {
                        "description": "OK",
                        "content": {
                            "application/json": {
                                "schema": {
                                    "$ref": "#/components/schemas/runsResponseSchema"
                                }
                            }
                        }
                    }
                }
            }
        },
        "/acts/signalbase~signalbase-hiring/run-sync": {
            "post": {
                "operationId": "run-sync-signalbase-signalbase-hiring",
                "x-openai-isConsequential": false,
                "summary": "Executes an Actor, waits for completion, and returns the OUTPUT from Key-value store in response.",
                "tags": [
                    "Run Actor"
                ],
                "requestBody": {
                    "required": true,
                    "content": {
                        "application/json": {
                            "schema": {
                                "$ref": "#/components/schemas/inputSchema"
                            }
                        }
                    }
                },
                "parameters": [
                    {
                        "name": "token",
                        "in": "query",
                        "required": true,
                        "schema": {
                            "type": "string"
                        },
                        "description": "Enter your Apify token here"
                    }
                ],
                "responses": {
                    "200": {
                        "description": "OK"
                    }
                }
            }
        }
    },
    "components": {
        "schemas": {
            "inputSchema": {
                "type": "object",
                "properties": {
                    "page": {
                        "title": "Page",
                        "minimum": 1,
                        "type": "integer",
                        "description": "Page number for pagination.",
                        "default": 1
                    },
                    "limit": {
                        "title": "Results Per Page",
                        "minimum": 1,
                        "maximum": 100,
                        "type": "integer",
                        "description": "Number of results per page (max 100).",
                        "default": 50
                    },
                    "dateFrom": {
                        "title": "Date From",
                        "type": "string",
                        "description": "Filter signals from this date (YYYY-MM-DD)."
                    },
                    "dateTo": {
                        "title": "Date To",
                        "type": "string",
                        "description": "Filter signals up to this date (YYYY-MM-DD)."
                    },
                    "date_preset": {
                        "title": "Date Preset",
                        "enum": [
                            "",
                            "today",
                            "yesterday",
                            "last_7d",
                            "last_14d",
                            "last_30d",
                            "last_60d",
                            "last_90d",
                            "last_6m",
                            "last_1y",
                            "last_2y",
                            "this_week",
                            "this_month",
                            "this_quarter",
                            "this_year",
                            "last_week",
                            "last_month",
                            "last_quarter",
                            "last_year"
                        ],
                        "type": "string",
                        "description": "Relative date shorthand. Takes precedence over Date From / Date To."
                    },
                    "search": {
                        "title": "Search",
                        "type": "string",
                        "description": "Free-text search across company name, job title, and more."
                    },
                    "countries": {
                        "title": "Countries",
                        "type": "string",
                        "description": "Comma-separated country codes (e.g. US,GB,DE)."
                    },
                    "categories": {
                        "title": "Categories",
                        "type": "string",
                        "description": "Pipe-separated company categories (e.g. Technology|Healthcare)."
                    },
                    "subcategories": {
                        "title": "Subcategories",
                        "type": "string",
                        "description": "Comma-separated subcategory IDs: ai, saas, cybersecurity, web3, devtools, fintech, analytics, ecommerce, marketing, sales, healthcare, biotechnology, education, real estate, energy, logistics, manufacturing, retail, etc."
                    },
                    "industry": {
                        "title": "Industry",
                        "type": "string",
                        "description": "Comma-separated exact industry names."
                    },
                    "company_name": {
                        "title": "Company Name",
                        "type": "string",
                        "description": "Search by company name (partial match)."
                    },
                    "positions": {
                        "title": "Positions",
                        "type": "string",
                        "description": "Comma-separated positions: ceo, cto, cfo, coo, vp of engineering, vp of sales, vp of marketing, head of product, head of growth, head of engineering, engineering manager, product manager, sales manager, marketing manager, founder, co-founder."
                    },
                    "departments": {
                        "title": "Departments",
                        "type": "string",
                        "description": "Comma-separated: marketing, sales, engineering, product, design, operations, finance, people, data, customer_success, growth, legal."
                    },
                    "seniorities": {
                        "title": "Seniorities",
                        "type": "string",
                        "description": "Comma-separated: founder, c_level, vp, director, head, lead, manager."
                    },
                    "states": {
                        "title": "US States",
                        "type": "string",
                        "description": "Comma-separated US state codes (e.g. CA,NY,TX)."
                    },
                    "city": {
                        "title": "City",
                        "type": "string",
                        "description": "Free-text city search."
                    },
                    "team_size": {
                        "title": "Team Size",
                        "type": "string",
                        "description": "Comma-separated ranges: 1-10, 11-50, 51-200, 201-1000, 1000-plus."
                    },
                    "applicants": {
                        "title": "Applicants",
                        "type": "string",
                        "description": "Comma-separated ranges: 0-25, 26-50, 51-100, 101-200, 201-plus."
                    },
                    "employee_count_min": {
                        "title": "Min Employee Count",
                        "type": "integer",
                        "description": "Minimum company employee count."
                    },
                    "employee_count_max": {
                        "title": "Max Employee Count",
                        "type": "integer",
                        "description": "Maximum company employee count."
                    },
                    "founded_year_min": {
                        "title": "Min Founded Year",
                        "type": "integer",
                        "description": "Minimum company founded year."
                    },
                    "founded_year_max": {
                        "title": "Max Founded Year",
                        "type": "integer",
                        "description": "Maximum company founded year."
                    },
                    "sort_by": {
                        "title": "Sort By",
                        "type": "string",
                        "description": "Field to sort results by (e.g. datePosted, numApplicants)."
                    },
                    "sort_order": {
                        "title": "Sort Order",
                        "enum": [
                            "asc",
                            "desc"
                        ],
                        "type": "string",
                        "description": "Sort direction.",
                        "default": "desc"
                    }
                }
            },
            "runsResponseSchema": {
                "type": "object",
                "properties": {
                    "data": {
                        "type": "object",
                        "properties": {
                            "id": {
                                "type": "string"
                            },
                            "actId": {
                                "type": "string"
                            },
                            "userId": {
                                "type": "string"
                            },
                            "startedAt": {
                                "type": "string",
                                "format": "date-time",
                                "example": "2025-01-08T00:00:00.000Z"
                            },
                            "finishedAt": {
                                "type": "string",
                                "format": "date-time",
                                "example": "2025-01-08T00:00:00.000Z"
                            },
                            "status": {
                                "type": "string",
                                "example": "READY"
                            },
                            "meta": {
                                "type": "object",
                                "properties": {
                                    "origin": {
                                        "type": "string",
                                        "example": "API"
                                    },
                                    "userAgent": {
                                        "type": "string"
                                    }
                                }
                            },
                            "stats": {
                                "type": "object",
                                "properties": {
                                    "inputBodyLen": {
                                        "type": "integer",
                                        "example": 2000
                                    },
                                    "rebootCount": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "restartCount": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "resurrectCount": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "computeUnits": {
                                        "type": "integer",
                                        "example": 0
                                    }
                                }
                            },
                            "options": {
                                "type": "object",
                                "properties": {
                                    "build": {
                                        "type": "string",
                                        "example": "latest"
                                    },
                                    "timeoutSecs": {
                                        "type": "integer",
                                        "example": 300
                                    },
                                    "memoryMbytes": {
                                        "type": "integer",
                                        "example": 1024
                                    },
                                    "diskMbytes": {
                                        "type": "integer",
                                        "example": 2048
                                    }
                                }
                            },
                            "buildId": {
                                "type": "string"
                            },
                            "defaultKeyValueStoreId": {
                                "type": "string"
                            },
                            "defaultDatasetId": {
                                "type": "string"
                            },
                            "defaultRequestQueueId": {
                                "type": "string"
                            },
                            "buildNumber": {
                                "type": "string",
                                "example": "1.0.0"
                            },
                            "containerUrl": {
                                "type": "string"
                            },
                            "usage": {
                                "type": "object",
                                "properties": {
                                    "ACTOR_COMPUTE_UNITS": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "DATASET_READS": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "DATASET_WRITES": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "KEY_VALUE_STORE_READS": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "KEY_VALUE_STORE_WRITES": {
                                        "type": "integer",
                                        "example": 1
                                    },
                                    "KEY_VALUE_STORE_LISTS": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "REQUEST_QUEUE_READS": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "REQUEST_QUEUE_WRITES": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "DATA_TRANSFER_INTERNAL_GBYTES": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "DATA_TRANSFER_EXTERNAL_GBYTES": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "PROXY_RESIDENTIAL_TRANSFER_GBYTES": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "PROXY_SERPS": {
                                        "type": "integer",
                                        "example": 0
                                    }
                                }
                            },
                            "usageTotalUsd": {
                                "type": "number",
                                "example": 0.00005
                            },
                            "usageUsd": {
                                "type": "object",
                                "properties": {
                                    "ACTOR_COMPUTE_UNITS": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "DATASET_READS": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "DATASET_WRITES": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "KEY_VALUE_STORE_READS": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "KEY_VALUE_STORE_WRITES": {
                                        "type": "number",
                                        "example": 0.00005
                                    },
                                    "KEY_VALUE_STORE_LISTS": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "REQUEST_QUEUE_READS": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "REQUEST_QUEUE_WRITES": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "DATA_TRANSFER_INTERNAL_GBYTES": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "DATA_TRANSFER_EXTERNAL_GBYTES": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "PROXY_RESIDENTIAL_TRANSFER_GBYTES": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "PROXY_SERPS": {
                                        "type": "integer",
                                        "example": 0
                                    }
                                }
                            }
                        }
                    }
                }
            }
        }
    }
}
```
