{
  "openapi": "3.0.1",
  "info": {
    "title": "Signalbase Real Time Hiring",
    "description": "Real-time hiring signals. Track open job postings with company context, seniority levels, departments, and location data.",
    "version": "1.0",
    "x-build-id": "Pa5Jcv2mrwXdg7JTR"
  },
  "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
                  }
                }
              }
            }
          }
        }
      }
    }
  }
}