Skip to main content

Documentation Index

Fetch the complete documentation index at: https://docs.signalhire.com/llms.txt

Use this file to discover all available pages before exploring further.

The currentTitle, currentPastTitle, currentCompany, currentPastCompany, and keywords fields support Boolean search operators.
OperatorDescriptionExample
ANDBoth terms must appearPHP AND JavaScript
ORAt least one term must appearPython OR Java
NOTExclude a termManager NOT Assistant
()Group terms for logic(Java AND Spring) OR Python
""Exact phrase match"Software Engineer"

Examples

Find software engineers or developers with PHP and JavaScript skills:
{
  "currentTitle": "(\"Software Engineer\") OR Developer",
  "keywords": "PHP AND JavaScript"
}
Find managers excluding assistants at Google or Microsoft:
{
  "currentTitle": "Manager NOT Assistant",
  "currentCompany": "Google OR Microsoft"
}