The Glassdoor Listing API allows you to retrieve job listings from Glassdoor based on various search parameters.
Get Your API Key
Sign in at hasdata.com, go to your account settings, and copy your API key.
All requests must include your key in the x-api-key header.
Request Cost and API Credits
Each request to the Glassdoor Listing API consumes API Credits from your account balance.
- Cost per request: 5 API Credits
- Credits are deducted only for successful requests.
- Your total available credits depend on your active plan.
You can use your credits across all HasData APIs. The same credit balance is shared platform-wide.
Unused credits do not roll over. Any remaining credits expire at the end of the current billing period.
To monitor your credit usage and remaining balance, sign in to your account dashboard at app.hasdata.com.
Make Your First Request
curl --request GET \
--url 'https://api.hasdata.com/scrape/glassdoor/listing?keyword=software%20engineer&location=New%20York%2C%20NY&sort=recent&domain=www.glassdoor.com' \
--header 'Content-Type: application/json' \
--header 'x-api-key: <your-api-key>'
API Parameters
| Parameter | Default Value | Required | Description |
|---|
keyword | software engineer | Yes | The keyword used to search for job listings. |
location | New York, NY | Yes | The location to search for job listings. |
sort | recent | No | The sorting option for the search results. |
domain | www.glassdoor.com | No | The domain of the Glassdoor site (optional). |
nextPageToken | - | No | Token for fetching the next page of jobs. |