Skip to content
Eden Engine

Software Product Reviews (by Product Slug)

omnial/get-software-reviews

Given a software product's URL slug on a review directory, returns its aggregate rating, a per-category score breakdown (value, features, ease of use, support, likelihood to recommend), the star-rating distribution, short review snippets, and full individual reviews with reviewer name, role, company size/industry, and per-review scores. Returns an empty result when the slug does not match a listed product.

activeper callv1
Provider
Web & Business Data Network
Category
software-reviews
Provider price
$0.01365 per call
Latency p50 / p95
— / —
Success rate
Verified

Provider list price; Omnial MCP charges provider cost plus a platform markup on top.

Contract

input_schema.json
{
  "type": "object",
  "required": [
    "slug"
  ],
  "properties": {
    "slug": {
      "type": "string",
      "description": "Product URL path segment without leading/trailing slashes (e.g. 'collaboration-software/a/monday-com')."
    }
  },
  "additionalProperties": false
}
output_schema.json
{
  "type": "object",
  "properties": {
    "data": {
      "type": "object",
      "properties": {
        "list": {
          "type": "array",
          "items": {
            "type": "object",
            "properties": {
              "id": {
                "type": "string"
              },
              "title": {
                "type": "string"
              },
              "rating": {
                "type": "object",
                "properties": {
                  "by_field": {
                    "type": "object",
                    "properties": {
                      "rating_ease": {
                        "type": "number"
                      },
                      "rating_value": {
                        "type": "number"
                      },
                      "rating_support": {
                        "type": "number"
                      },
                      "rating_features": {
                        "type": "number"
                      },
                      "likelihood_to_recommend": {
                        "type": "number"
                      }
                    },
                    "description": "Per-category scores for THIS review, as real numbers -- contrast `data.by_field` above, the same category names aggregated across the product, which are numeric-looking strings.",
                    "additionalProperties": true
                  },
                  "total_rounded": {
                    "type": "number"
                  }
                },
                "additionalProperties": true
              },
              "cons_text": {
                "type": "string"
              },
              "pros_text": {
                "type": "string"
              },
              "user_info": {
                "type": "object",
                "properties": {
                  "full_name": {
                    "type": "string",
                    "description": "The reviewer's full name, as published on the review site."
                  },
                  "job_title": {
                    "type": "string"
                  },
                  "is_verified": {
                    "type": "boolean"
                  },
                  "picture_url": {
                    "type": [
                      "string",
                      "null"
                    ],
                    "description": "The reviewer's profile picture. Value withheld (returned as `null` regardless of what the source review carried) -- only whether the field is populated is observable, not the image URL itself."
                  },
                  "company_size": {
                    "type": "string",
                    "description": "A single-letter size-bucket code (e.g. 'B', 'D', 'E', 'F' observed) -- the letter-to-headcount mapping is not documented by the one fixture captured."
                  },
                  "company_industry": {
                    "type": "string"
                  }
                },
                "additionalProperties": true
              },
              "written_on": {
                "type": "string",
                "description": "ISO 8601 timestamp of the review."
              },
              "source_site": {
                "type": "string",
                "description": "e.g. 'CAPTERRA'."
              },
              "overall_rating": {
                "type": "number"
              },
              "advice_to_others": {
                "type": "string",
                "description": "Observed as an empty string on every review in the one fixture."
              },
              "general_comments": {
                "type": "string"
              },
              "vendor_reply_text": {
                "type": [
                  "string",
                  "null"
                ],
                "description": "The vendor's reply, when one exists. Null on every review observed."
              }
            },
            "additionalProperties": true
          },
          "description": "Full individual reviews."
        },
        "total": {
          "type": "number",
          "description": "Total number of reviews counted."
        },
        "by_field": {
          "type": "object",
          "properties": {
            "rating_ease": {
              "type": "string"
            },
            "rating_value": {
              "type": "string"
            },
            "rating_support": {
              "type": "string"
            },
            "rating_features": {
              "type": "string"
            },
            "likelihood_to_recommend": {
              "type": "string"
            }
          },
          "description": "Per-category average scores for the product overall. Observed as NUMERIC-LOOKING STRINGS (e.g. \"4.28\"), not numbers -- contrast `list[].rating.by_field` below, the same category names on an individual review, which are real numbers.",
          "additionalProperties": true
        },
        "snippets": {
          "type": "array",
          "items": {
            "type": "object",
            "properties": {
              "text": {
                "type": "string"
              },
              "type": {
                "type": "string",
                "description": "e.g. 'pros' or 'cons'."
              },
              "avatar": {
                "type": [
                  "string",
                  "null"
                ],
                "description": "The reviewer's avatar image. Value withheld (returned as `null` regardless of what the source review carried) -- only whether the field is populated is observable, not the image URL itself."
              },
              "topics": {
                "type": "array",
                "items": {
                  "type": "string"
                }
              },
              "created": {
                "type": "string",
                "description": "ISO 8601 timestamp of the review."
              },
              "job_title": {
                "type": "string"
              },
              "review_id": {
                "type": "string"
              },
              "time_used": {
                "type": "string",
                "description": "Observed as an empty string on every snippet in the one fixture."
              },
              "user_name": {
                "type": "string",
                "description": "The reviewer's display name, as published on the review site."
              },
              "is_anonymous": {
                "type": "boolean"
              },
              "frequency_of_use": {
                "type": "string",
                "description": "Observed as an empty string on every snippet in the one fixture."
              },
              "is_authenticated": {
                "type": "boolean"
              }
            },
            "additionalProperties": true
          },
          "description": "Short pull-quote excerpts, distinct from the full reviews in `list`."
        },
        "by_rating": {
          "type": "object",
          "properties": {
            "1": {
              "type": "number"
            },
            "2": {
              "type": "number"
            },
            "3": {
              "type": "number"
            },
            "4": {
              "type": "number"
            },
            "5": {
              "type": "number"
            }
          },
          "description": "Count of reviews at each star level. Keys observed as the strings '1'-'5' (a fixed 1-5 star scale on the one product observed).",
          "additionalProperties": true
        },
        "rating_avg": {
          "type": "number",
          "description": "Overall average rating, e.g. out of 5."
        },
        "video_reviews": {
          "type": "array",
          "items": {},
          "description": "Empty on the one fixture observed; the shape of a populated entry is unconfirmed."
        },
        "positive_percentage": {
          "type": "number",
          "description": "Percent of reviews classified positive, e.g. 77 for 77%."
        }
      },
      "additionalProperties": true
    },
    "status": {
      "type": "string",
      "description": "'success' on the one found-product call observed."
    }
  },
  "description": "The review record, as returned at routing.responseResultPath ($.output). Observed as an empty object `{}` when the given `slug` does not resolve to a listed product -- confirmed against the `unknown-slug-notfound` fixture, which billed $0 for that outcome.",
  "additionalProperties": true
}

Pricing

Every real charge, itemised. A model that quietly omits one is a slow financial leak, so nothing here is rolled up, and a charge that only applies to some inputs says so rather than being added in.

Prices in this catalog are the provider's own list price, not your bill: Omnial MCP charges provider cost plus a platform markup on top, so what you are charged is higher than the figure shown. For the exact amount a specific call will cost, run omnial_execute with dry_run: true; that number includes the markup and is what we hold while the call runs. It is a quote, not a cap on the charge.

ChargeRate
Per call
Flat, regardless of what comes back
$0.01365
Cost basis
Not recorded

This tool's catalog entry does not record how its final bill is determined, so we will not tell you whether its cost is fixed before the call or reported by the provider afterwards. Either way what is held is a quote rather than a cap: you are charged what the call actually costs, bounded at 2x the quote.

Updated
Sep 8, 2026