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.

ActionRequiredOptionalDeliveryLimitPer 1,000Response fields
search

Search

Use Clutch search to discover Clutch public results. Call Clutch search with keyword; Clutch search exposes review_count, name, text, min_project_size, url, project_count, rating, hourly_rate, id, website, platform, employees_count, tags, rating_scale, image_url, location, is_verified, and services.

keywordSync deliveryCatalog 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 requestsid · 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
reviews

Reviews

Target review records with the Clutch reviews capability. Use Clutch reviews with url; Clutch then selects review records. Pass url to Clutch reviews; returned objects expose quote, rating, id, posted_at, reviewer_position, url, title, text, project_length, rating_cost, rating_scale, reviewer_company_size, rating_schedule, rating_quality, rating_refer, project_size, reviewer_location, reviewer_industry, services, and platform.

urlSync deliveryCatalog 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 requestsid · 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
company

Company

Treat company as the Clutch view for a single company record, where url identifies the target. Account labels inside a company record are platform signals rather than EveryInfra verification. Clutch company reads url, with review_count, locations, name, url, business_entity, text, id, employees_count, platform, share, website, city, service_lines, country, social_links, and address available in its response.

urlSync delivery$1.39 per 1,000 requestsid · 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?

Use Clutch search to discover Clutch public results. Call Clutch search with keyword; Clutch search exposes review_count, name, text, min_project_size, url, project_count, rating, hourly_rate, id, website, platform, employees_count, tags, rating_scale, image_url, location, is_verified, and services.

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?

Target review records with the Clutch reviews capability. Use Clutch reviews with url; Clutch then selects review records. Pass url to Clutch reviews; returned objects expose quote, rating, id, posted_at, reviewer_position, url, title, text, project_length, rating_cost, rating_scale, reviewer_company_size, rating_schedule, rating_quality, rating_refer, project_size, reviewer_location, reviewer_industry, services, and platform.

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?

Treat company as the Clutch view for a single company record, where url identifies the target. Account labels inside a company record are platform signals rather than EveryInfra verification. Clutch company reads url, with review_count, locations, name, url, business_entity, text, id, employees_count, platform, share, website, city, service_lines, country, social_links, and address available in its response.

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

  1. 01Read the public catalog and choose a platform action.
  2. 02Send the platform, action, and required parameters to POST /api/v1/social.
  3. 03Handle a synchronous result or poll the returned job ID when the selected action is asynchronous.
  4. 04Store the structured response fields needed by your application.
clutch_search.sh
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.