1.0.0
OAS 3.0.0
Exfunc APIs
Authentication
Exfunc offers one form of authentication:
- API Key
Exfunc API endpoint
API Key (api_key)
Client Libraries
Exfunc offers one form of authentication:
Exfunc API endpoint
Glassdoor APIs
Search job postings on Glassdoor for a given query
The search query for job postings
Location to filter job postings
Filter for job postings based on when they were posted
Next token for pagination
curl --request POST \
--url https://api.exfunc.com/glassdoor/search-job-postings \
--header 'Content-Type: application/json' \
--header 'X-Api-Key: YOUR_TOKEN' \
--data '{
"date_posted": "Any time"
}'
{
"job_postings": [
{
"url": "https://example.com",
"title": "…",
"location": "…",
"description": "…",
"date_posted": "2025-04-04T05:58:08.559Z",
"company_name": "…",
"company_url": "https://example.com",
"company_website_url": "…",
"salary": {
"currency": "…",
"period": "…",
"percentiles": {
"p10": 1,
"p50": 1,
"p90": 1
}
}
}
],
"next_token": "…"
}
SearchJobPostings API successful response
/endpoint/{my_path_variable}
Content-Type | application/json | |