EveryData platform API

Capterra API

Capterra offers the 2 declared views used here for Capterra software categories and buyer review records, and `reviews`, `category` must each be read according to its own contract.

Capterra keeps `reviews` (review records) separate from `category` (category records). Parameters `company` and `category` apply only inside those contracts.

Endpoint
POST /api/v1/social
Capabilities
2
Per 1,000
$1.389

Available capabilities

Compare the Capterra actions by required input, returned data, and price. Use the action identifier exactly as shown in your request.

ActionRequiredOptionalDeliveryLimitPer 1,000Response fields
reviews

Reviews

Retrieve public reviews from Capterra. Accepts these parameters: company, stars, and sort. Returns these fields: rating, recommend_rating, features_rating, and rating_scale.

companysort, starsSync 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 · pros · cons · rating · rating_scale · ease_of_use_rating · customer_service_rating · features_rating · value_rating · recommend_rating · author_name · author_job_title · author_industry · company_size · usage_duration · author_verified · incentivized · source · chosen_reasons · switching_reasons · vendor_response · product_url · posted_at · platform
category

Category

Retrieve public categories from Capterra. Accepts these parameters: category. Returns these fields: rating_scale, review_count, description, and rating.

categorySync deliveryCatalog value: maxLimit=4. Check the action notes before treating it as a final row count.$1.39 per 1,000 requestsid · name · url · rating · rating_scale · review_count · description · domain · website · platform

What does each Capterra 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 Capterra reviews parameters mean?

Retrieve public reviews from Capterra. Accepts these parameters: company, stars, and sort. Returns these fields: rating, recommend_rating, features_rating, and rating_scale.

companyRequired
Specifies the Capterra software product name or the full /p/<product_id>/<slug>/ URL. Passing the product URL is recommended to avoid name matching ambiguities. Refers to a software product, not a legal entity or company website.
Capterra: User Reviews, Incentives, and Vendor ResponsesCapterra treats reviews as individual user experiences and opinions, and vendor responses do not represent platform endorsement. Reviews submitted via incentive programs are marked with their source. This context explains review backgrounds and does not replace content evaluation based on incentive status.Checked
sortOptional
Sets review sort order across supported execution paths. Sorting is not guaranteed across all main queries and should not be relied upon as a stable, cross-path filter.
starsOptional
Filters individual software reviews by star rating using a single value or an array. Applies only to supported execution paths, does not filter by average product score, and is not guaranteed across all queries.

What do the Capterra category parameters mean?

Retrieve public categories from Capterra. Accepts these parameters: category. Returns these fields: rating_scale, review_count, description, and rating.

categoryRequired
Specifies the Capterra category slug or full URL, such as project-management-software or accounting-software. Slugs map directly to https://www.capterra.com/<category>/. Accepts path values copied directly from category pages, not general keyword search terms.

How to use the Capterra 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.
capterra_reviews.sh
curl -X POST https://api.everyinfra.com/api/v1/social \
  -H "Authorization: Bearer YOUR_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"platform":"capterra","action":"reviews","params":{"company":"<company>"}}'

Capterra API questions

What can I retrieve with the Capterra API?

Set platform to capterra. The current catalog lists reviews and category. These action names identify different Capterra objects or views; they are not interchangeable search modes.

Which input starts a Capterra `reviews` request?

Specifies the Capterra software product name or the full /p/<product_id>/<slug>/ URL. Passing the product URL is recommended to avoid name matching ambiguities. Refers to a software product, not a legal entity or company website. Send it as company inside params.

Which fields can Capterra `reviews` return?

Its declared schema includes title, text, pros, and cons. A declared field can still be absent from an individual source record, and every other action has its own field list.

Does every Capterra 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.