Skip to main content
POST
/
api
/
blind
/
layoffs
/
search
/blind/layoffs/search
curl --request POST \
  --url https://api.anysite.io/api/blind/layoffs/search \
  --header 'Content-Type: application/json' \
  --header 'access-token: <api-key>' \
  --data '
{
  "count": 2,
  "timeout": 300,
  "keyword": "",
  "industry": "",
  "location": "",
  "date_from": "",
  "date_to": "",
  "sort": "recent"
}
'
[
  {
    "id": "<string>",
    "company_name": "<string>",
    "@type": "BlindLayoff",
    "company_alias": "<string>",
    "company_image": "<string>",
    "industries": [],
    "headquarters": "<string>",
    "layoff_location": "<string>",
    "layoff_date": "<string>",
    "date_precision": "<string>",
    "laid_off_count": 123,
    "laid_off_percent": 123,
    "total_employees_before": 123,
    "status": "<string>",
    "severity": "<string>",
    "is_verified": true,
    "source_url": "<string>",
    "discussion_url": "<string>",
    "news_url": "<string>",
    "news_title": "<string>",
    "news_source": "<string>",
    "news_summary": "<string>",
    "notes": "<string>",
    "created_at": 123,
    "updated_at": 123
  }
]

Authorizations

access-token
string
header
required

API token from the dashboard

Headers

access-token
string
required

Body

application/json
count
integer
required

Max number of layoff records to return

Required range: x >= 1
timeout
integer
default:300

Max scrapping execution timeout (in seconds)

Required range: 20 <= x <= 1500
keyword
string
default:""

Filter by company name substring

Example:

"Google"

status
enum<string> | null

Filter by tracked status

Available options:
rumor,
confirmed,
in_progress,
completed
severity
enum<string> | null

Filter by layoff size bucket

Available options:
small,
medium,
large
industry
string
default:""

Filter by industry substring

Example:

"FinTech"

location
string
default:""

Filter by layoff or HQ location substring

Example:

"India"

date_from
string
default:""

Only layoffs on/after this date (YYYY-MM-DD)

Example:

"2026-06-01"

date_to
string
default:""

Only layoffs on/before this date (YYYY-MM-DD)

Example:

"2026-07-31"

sort
enum<string>
default:recent

Result ordering

Available options:
recent,
oldest,
most_laid_off,
company

Response

Successful Response

id
string
required
company_name
string
required
@type
string
default:BlindLayoff
company_alias
string | null
company_image
string | null
industries
string[]
headquarters
string | null
layoff_location
string | null
layoff_date
string | null
date_precision
string | null
laid_off_count
integer | null
laid_off_percent
number | null
total_employees_before
integer | null
status
string | null
severity
string | null
is_verified
boolean | null
source_url
string | null
discussion_url
string | null
news_url
string | null
news_title
string | null
news_source
string | null
news_summary
string | null
notes
string | null
created_at
integer | null
updated_at
integer | null