EveryData platform API
Clutch API
Clutch separates Clutch company discovery, service-company profiles, and client reviews across 3 documented actions (`search`, `reviews`, `company`), keeping discovery and object-detail contracts distinct.
Start with `search` using `keyword` for matching public results, and move to `reviews` using `url` for review records, keeping the two result shapes distinct.
- Endpoint
- POST /api/v1/social
- Capabilities
- 3
- Per 1,000
- $1.389
Available capabilities
Compare the Clutch 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 Search public results on Clutch. Accepts these parameters: | keyword | — | 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 · name · text · location · rating · rating_scale · review_count · employees_count · hourly_rate · min_project_size · project_count · services · tags · is_verified · website · image_url · platform |
reviewsReviews Retrieve public reviews from Clutch. Accepts these parameters: | url | — | 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 · text · quote · rating · rating_scale · rating_quality · rating_schedule · rating_cost · rating_refer · project_size · project_length · services · reviewer_position · reviewer_industry · reviewer_company_size · reviewer_location · posted_at · platform |
companyCompany Retrieve public company details from Clutch. Accepts these parameters: | url | — | Sync delivery | — | $1.39 per 1,000 requests | id · url · name · text · website · employees_count · review_count · service_lines · locations · social_links · business_entity · platform · share · address · city · country |
What does each Clutch 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 Clutch search parameters mean?
Search public results on Clutch. Accepts these parameters: keyword. Returns these fields: review_count, name, text, and min_project_size.
keywordRequired- Specifies a path or full URL for a Clutch directory, such as developers or web-design, mapping to clutch.co path segments. Accepts directory path values copied from service or regional pages, not full-text search keywords.Clutch: Directory Rankings and Agency EvaluationsClutch directory rankings combine reviews, client experience, market presence, and other factors, and the formula can vary by directory. A single `rating` does not replace the full set of ranking criteria.Checked
What do the Clutch reviews parameters mean?
Retrieve public reviews from Clutch. Accepts these parameters: url. Returns these fields: quote, rating, posted_at, and reviewer_position.
urlRequired- Specifies a Clutch profile URL (/profile/<slug>) or bare slug. Used by company for service lines and size data, and reviews for project feedback. The reviews action automatically appends #reviews, so project titles or client company names should not be included.Clutch: Reviews Score vs. Rating StarsClutch calculates its Reviews Score by combining an overall score, recency, and verification status rather than using the rating stars of an individual review. The rating field in this API action must not be labeled as Reviews Score or Ability to Deliver.Checked
What do the Clutch company parameters mean?
Retrieve public company details from Clutch. Accepts these parameters: url. Returns these fields: review_count, locations, name, and business_entity.
urlRequired- Specifies a Clutch profile URL (/profile/<slug>) or bare slug. Used by company for service lines and size data, and reviews for project feedback. The reviews action automatically appends #reviews, so project titles or client company names should not be included.
How to use the Clutch 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":"clutch","action":"search","params":{"keyword":"<keyword>"}}'
Clutch API questions
What can I retrieve with the Clutch API?
Set platform to clutch. The current catalog lists search, reviews, and company. These action names identify different Clutch objects or views; they are not interchangeable search modes.
Which input starts a Clutch `search` request?
Specifies a path or full URL for a Clutch directory, such as developers or web-design, mapping to clutch.co path segments. Accepts directory path values copied from service or regional pages, not full-text search keywords. Send it as keyword inside params.
Which fields can Clutch `search` return?
Its declared schema includes name, text, location, and rating. A declared field can still be absent from an individual source record, and every other action has its own field list.
Does every Clutch 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.