EveryData platform API
Dice API
Search Dice for US technology jobs by role or skill, then narrow the results by location or posting window. The response identifies the employer, work location, employment type, and whether a listing is marked remote.
`posted_date` is a relative job-posting window, not an application deadline or a calendar date. A Remote or Hybrid label describes work location; it does not prove that the employer accepts applicants from every country.
- Endpoint
- POST /api/v1/social
- Capabilities
- 1
- Per 1,000
- $1.389
Available capabilities
Compare the Dice actions by required input, returned data, and price. Use the action identifier exactly as shown in your request.
| Action | Required | Optional | Delivery | Limit | Per 1,000 | Response fields |
|---|---|---|---|---|---|---|
searchSearch Use Dice | keyword | location, posted_date | Sync delivery | Catalog values: defaultLimit=20, maxLimit=100. A limit can control pages or per-parent expansion for some actions, so it is not always a final row count. | $1.39 per 1,000 requests | id · url · title · company_name · location · posted_at · employment_type · is_remote · platform |
What does each Dice action accept?
Each answer below pairs one callable action with its real inputs. Parameter meanings and allowed values are action-specific; a familiar name does not carry the same meaning across every platform.
Official sources are linked only to clarify the platform term beside them. They do not imply platform authorization or endorsement, and they do not add official-site features to the EveryInfra API contract.
What do the Dice search parameters mean?
Use Dice search to discover Dice public results. Technology-job discovery combines a role or skill with US location and posting-window filters. Dice search takes posted_date, location, and keyword and yields employment_type, url, platform, posted_at, id, is_remote, location, company_name, and title.
keywordRequired- Specifies the job search term on Dice, such as software developer. Matches tech position job titles and descriptions rather than company IDs or applicant names.
locationOptional- Filters job listings by geographic location text, such as New York, NY, defaulting to Remote. The Remote filter applies search location criteria and does not guarantee that an employer accepts international remote applicants.Dice: Job Searches and Work Arrangement FilteringDice distinguishes On-Site, Remote, and Hybrid positions, corresponding to on-site work, jobs marked as fully remote, and roles combining remote and on-site work. Filtering capabilities on the site do not automatically map to an identically named parameter on this endpoint.Checked
posted_dateOptional- Filters job listings by posting recency: all (default), 24h, 3d, 7d, or 30d. Sets a relative publishing window rather than an application deadline or a YYYY-MM-DD date value.
How to use the Dice API
- 01Read the public catalog and choose a platform action.
- 02Send the platform, action, and required parameters to POST /api/v1/social.
- 03Handle a synchronous result or poll the returned job ID when the selected action is asynchronous.
- 04Store the structured response fields needed by your application.
curl -X POST https://api.everyinfra.com/api/v1/social \ -H "Authorization: Bearer YOUR_API_KEY" \ -H "Content-Type: application/json" \ -d '{"platform":"dice","action":"search","params":{"keyword":"<keyword>"}}'
Dice API questions
What can I retrieve with the Dice API?
Set platform to dice. The current catalog lists search. These action names identify different Dice objects or views; they are not interchangeable search modes.
Which input starts a Dice `search` request?
Specifies the job search term on Dice, such as software developer. Matches tech position job titles and descriptions rather than company IDs or applicant names. Send it as keyword inside params.
Which fields can Dice `search` return?
Its declared schema includes title, company_name, location, and posted_at. A declared field can still be absent from an individual source record, and every other action has its own field list.
Does every Dice action return immediately?
No assumption is needed: this page labels each action's delivery mode. The current catalog contains sync delivery; poll a returned job ID only for an action labeled asynchronous.