Blue Signal Search
Executive search / staffing firm. searchJobs and getJob are live — real, current listings and full postings off Blue Signal's own Loxo-powered job board…
Executive search / staffing firm. searchJobs and getJob are live — real, current listings and full postings off Blue Signal's own Loxo-powered job board (bluesignal.com/search-jobs), filtered honestly by title/location/remote where the site's own widget requires manual UI interaction. The application submit is a stub — getJob returns the real apply-form URL as a handoff instead.
Domain: bluesignal.com
Also known as: Blue Signal, Blue Signal Search, bluesignal.com
Call it directly
bowmark.providers.bluesignal.searchJobs(args?: object): Promise<BlueSignalJobSummary[]>
bowmark.providers.bluesignal.getJob(args: object): Promise<BlueSignalJobDetail>Functions
| Function | What it does |
|---|---|
searchJobs | Searches Blue Signal's 270+ live job openings (bluesignal.com/search-jobs, backed by Loxo). Filters honestly by keywords (title substring), location (substring) and remote (boolean) —… |
getJob | Gets one job's full posting — pass the id or url from a searchJobs result. |
Types
interface BlueSignalJobSummary {
id: string;
title: string;
location: string;
remote: boolean;
url: string;
}
interface BlueSignalJobDetail extends BlueSignalJobSummary {
descriptionHtml: string;
applyUrl: string;
}