Skip to content
Eden Engine

Software Product Profile (by Product Slug)

omnial/get-software-details

Given a software product's URL slug on a review directory, returns its full profile: description, overview, tagline, category, pricing plans and tiers, feature list with per-feature ratings, supported integrations, platform/device support, vendor company info, pros/cons summaries with review excerpts, FAQ, and aggregate rating data. 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', 'customer-management-software/a/salesforce'). Obtainable from list_software_by_category listings or cta_urls.detail fields."
    }
  },
  "additionalProperties": false
}
output_schema.json
{
  "type": "object",
  "properties": {
    "data": {
      "type": "object",
      "properties": {
        "id": {
          "type": "string"
        },
        "faq": {
          "type": "array",
          "items": {
            "type": "object",
            "properties": {
              "answer": {
                "type": "string",
                "description": "May contain raw HTML (e.g. `<br>`)."
              },
              "question": {
                "type": "string"
              }
            },
            "additionalProperties": true
          },
          "description": "Vendor-authored FAQ entries. `answer` values observed to contain raw `<br>` HTML line breaks, not plain text."
        },
        "name": {
          "type": "string"
        },
        "slug": {
          "type": "string"
        },
        "vendor": {
          "type": "object",
          "properties": {
            "city": {
              "type": "string"
            },
            "name": {
              "type": "string"
            },
            "country": {
              "type": "string"
            },
            "country_code": {
              "type": "string"
            },
            "year_founded": {
              "type": "string"
            },
            "state_province": {
              "type": "string",
              "description": "Observed as an empty string on the one vendor captured."
            }
          },
          "description": "The publisher company's own public business info.",
          "additionalProperties": true
        },
        "videos": {
          "type": "array",
          "items": {
            "type": "object",
            "properties": {
              "url": {
                "type": [
                  "string",
                  "null"
                ],
                "description": "The video URL. Value withheld (returned as `null` regardless of what the source record carried) -- only whether the field is populated is observable, not the URL itself."
              },
              "caption": {
                "type": [
                  "string",
                  "null"
                ],
                "description": "Observed as `null` on the one video captured."
              },
              "videoId": {
                "type": "string",
                "description": "The hosting platform's own video id, e.g. a YouTube video id."
              },
              "videoType": {
                "type": "number"
              },
              "urlTagType": {
                "type": "number"
              },
              "thumbnailUrl": {
                "type": [
                  "string",
                  "null"
                ],
                "description": "The video thumbnail image. Value withheld (returned as `null` regardless of what the source record carried) -- only whether the field is populated is observable, not the image URL itself."
              }
            },
            "additionalProperties": true
          }
        },
        "pricing": {
          "type": "object",
          "properties": {
            "plans": {
              "type": "array",
              "items": {
                "type": "object",
                "properties": {
                  "name": {
                    "type": "string"
                  },
                  "priceType": {
                    "type": "number"
                  },
                  "attributes": {
                    "type": "array",
                    "items": {
                      "type": "string"
                    }
                  },
                  "pricingModel": {
                    "type": [
                      "number",
                      "null"
                    ],
                    "description": "Null observed on plans with no starting price (e.g. a custom-quote tier)."
                  },
                  "startingPrice": {
                    "type": [
                      "number",
                      "null"
                    ],
                    "description": "Null observed on plans with no fixed starting price (e.g. a custom-quote tier)."
                  },
                  "paymentFrequency": {
                    "type": [
                      "number",
                      "null"
                    ],
                    "description": "Null observed on plans with no fixed billing cadence (e.g. a free tier)."
                  }
                },
                "additionalProperties": true
              }
            },
            "amount": {
              "type": "string",
              "description": "Numeric-looking string, e.g. '9'."
            },
            "currency": {
              "type": "string"
            },
            "categories": {
              "type": "array",
              "items": {
                "type": "string"
              }
            },
            "periodicity": {
              "type": "string",
              "description": "e.g. 'month'."
            },
            "price_range": {
              "type": "number"
            },
            "pricing_model": {
              "type": "string",
              "description": "e.g. 'Per User'."
            },
            "currency_symbol": {
              "type": "string"
            },
            "no_credit_card_required": {
              "type": "boolean"
            }
          },
          "additionalProperties": true
        },
        "reviews": {
          "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.reviews.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."
                  },
                  "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."
                  },
                  "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"
            },
            "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."
                  },
                  "job_title": {
                    "type": "string"
                  },
                  "review_id": {
                    "type": "string"
                  },
                  "time_used": {
                    "type": "string",
                    "description": "Observed as an empty string on every snippet."
                  },
                  "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."
                  },
                  "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'.",
              "additionalProperties": true
            },
            "rating_avg": {
              "type": "number"
            },
            "video_reviews": {
              "type": "array",
              "items": {},
              "description": "Empty on the one fixture observed; the shape of a populated entry is unconfirmed."
            },
            "positive_percentage": {
              "type": "number"
            }
          },
          "additionalProperties": true
        },
        "tagline": {
          "type": "string"
        },
        "benefits": {
          "type": [
            "string",
            "null"
          ],
          "description": "Observed as `null` on the one product captured; a populated shape is unconfirmed."
        },
        "category": {
          "type": "string",
          "description": "The product's primary listing category slug."
        },
        "features": {
          "type": "object",
          "properties": {
            "list": {
              "type": "array",
              "items": {
                "type": "object",
                "properties": {
                  "name": {
                    "type": "string"
                  },
                  "slug": {
                    "type": "string"
                  },
                  "facet": {
                    "type": "string"
                  },
                  "is_seo": {
                    "type": "boolean"
                  },
                  "avg_rating": {
                    "type": "number"
                  },
                  "cnt_rating": {
                    "type": "number"
                  },
                  "definition": {
                    "type": "string"
                  },
                  "global_feature_id": {
                    "type": "string"
                  },
                  "pct_time_critical": {
                    "type": "number",
                    "description": "Fraction 0-1."
                  },
                  "pct_time_important": {
                    "type": "number",
                    "description": "Fraction 0-1."
                  }
                },
                "additionalProperties": true
              },
              "description": "The full feature catalog for this product."
            },
            "total": {
              "type": "number"
            },
            "heading": {
              "type": "string"
            },
            "popular": {
              "type": "array",
              "items": {
                "type": "object",
                "properties": {
                  "name": {
                    "type": "string"
                  },
                  "slug": {
                    "type": "string"
                  },
                  "facet": {
                    "type": "string"
                  },
                  "is_seo": {
                    "type": "boolean"
                  },
                  "avg_rating": {
                    "type": "number"
                  },
                  "cnt_rating": {
                    "type": "number"
                  },
                  "definition": {
                    "type": "string"
                  },
                  "global_feature_id": {
                    "type": "string"
                  },
                  "pct_time_critical": {
                    "type": "number"
                  },
                  "pct_time_important": {
                    "type": "number"
                  }
                },
                "additionalProperties": true
              },
              "description": "A subset of `list` highlighted as popular; same field shape as `list`."
            },
            "enhanced_features": {
              "type": "array",
              "items": {
                "type": "object",
                "properties": {
                  "name": {
                    "type": "string"
                  },
                  "snippets": {
                    "type": "array",
                    "items": {
                      "type": "object",
                      "properties": {
                        "id": {
                          "type": "string"
                        },
                        "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."
                        },
                        "created": {
                          "type": "string",
                          "description": "ISO 8601 timestamp."
                        },
                        "job_title": {
                          "type": "string"
                        },
                        "last_name": {
                          "type": "string",
                          "description": "The reviewer's last name, as published on the review site."
                        },
                        "time_used": {
                          "type": "string",
                          "description": "Observed as an empty string on every snippet."
                        },
                        "user_name": {
                          "type": "string",
                          "description": "The reviewer's display name, as published on the review site."
                        },
                        "first_name": {
                          "type": "string",
                          "description": "The reviewer's first name, as published on the review site."
                        },
                        "is_anonymous": {
                          "type": "boolean"
                        },
                        "is_validated": {
                          "type": "boolean"
                        },
                        "frequency_of_use": {
                          "type": "string",
                          "description": "Observed as an empty string on every snippet."
                        },
                        "is_authenticated": {
                          "type": "boolean"
                        },
                        "validations_passed": {
                          "type": "array",
                          "items": {
                            "type": "string"
                          },
                          "description": "e.g. ['LinkedIn']."
                        }
                      },
                      "description": "A reviewer quote with LinkedIn-style validation metadata, reused across features, pros/cons, review-topic, and customer-support-topic sections.",
                      "additionalProperties": true
                    },
                    "description": "Reviewer quotes about this feature, published on a public review site."
                  },
                  "avg_rating": {
                    "type": "number"
                  },
                  "cnt_rating": {
                    "type": "number"
                  },
                  "definition": {
                    "type": "string"
                  },
                  "avg_rating_desc": {
                    "type": "string"
                  },
                  "global_feature_id": {
                    "type": "string"
                  },
                  "enhanced_definition": {
                    "type": "string"
                  }
                },
                "additionalProperties": true
              },
              "description": "A smaller set of headline features with reviewer quote snippets attached."
            }
          },
          "additionalProperties": true
        },
        "logo_url": {
          "type": [
            "string",
            "null"
          ],
          "description": "The product's logo image. Value withheld (returned as `null` regardless of what the source record carried) -- only whether the field is populated is observable, not the image URL itself."
        },
        "modified": {
          "type": "string",
          "description": "ISO 8601 timestamp."
        },
        "overview": {
          "type": "string"
        },
        "prosCons": {
          "type": "object",
          "properties": {
            "cons": {
              "type": "array",
              "items": {
                "type": "object",
                "properties": {
                  "name": {
                    "type": "string",
                    "description": "A themed con category, e.g. 'Performance lag on large boards'."
                  },
                  "summary": {
                    "type": "string"
                  },
                  "snippets": {
                    "type": "array",
                    "items": {
                      "type": "object",
                      "properties": {
                        "id": {
                          "type": "string"
                        },
                        "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."
                        },
                        "created": {
                          "type": "string",
                          "description": "ISO 8601 timestamp."
                        },
                        "job_title": {
                          "type": "string"
                        },
                        "last_name": {
                          "type": "string",
                          "description": "The reviewer's last name, as published on the review site."
                        },
                        "time_used": {
                          "type": "string",
                          "description": "Observed as an empty string on every snippet."
                        },
                        "user_name": {
                          "type": "string",
                          "description": "The reviewer's display name, as published on the review site."
                        },
                        "first_name": {
                          "type": "string",
                          "description": "The reviewer's first name, as published on the review site."
                        },
                        "is_anonymous": {
                          "type": "boolean"
                        },
                        "is_validated": {
                          "type": "boolean"
                        },
                        "frequency_of_use": {
                          "type": "string",
                          "description": "Observed as an empty string on every snippet."
                        },
                        "is_authenticated": {
                          "type": "boolean"
                        },
                        "validations_passed": {
                          "type": "array",
                          "items": {
                            "type": "string"
                          },
                          "description": "e.g. ['LinkedIn']."
                        }
                      },
                      "description": "A reviewer quote with LinkedIn-style validation metadata, reused across features, pros/cons, review-topic, and customer-support-topic sections.",
                      "additionalProperties": true
                    }
                  }
                },
                "additionalProperties": true
              }
            },
            "pros": {
              "type": "array",
              "items": {
                "type": "object",
                "properties": {
                  "name": {
                    "type": "string",
                    "description": "A themed pro category, e.g. 'Comprehensive project tracking'."
                  },
                  "summary": {
                    "type": "string"
                  },
                  "snippets": {
                    "type": "array",
                    "items": {
                      "type": "object",
                      "properties": {
                        "id": {
                          "type": "string"
                        },
                        "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."
                        },
                        "created": {
                          "type": "string",
                          "description": "ISO 8601 timestamp."
                        },
                        "job_title": {
                          "type": "string"
                        },
                        "last_name": {
                          "type": "string",
                          "description": "The reviewer's last name, as published on the review site."
                        },
                        "time_used": {
                          "type": "string",
                          "description": "Observed as an empty string on every snippet."
                        },
                        "user_name": {
                          "type": "string",
                          "description": "The reviewer's display name, as published on the review site."
                        },
                        "first_name": {
                          "type": "string",
                          "description": "The reviewer's first name, as published on the review site."
                        },
                        "is_anonymous": {
                          "type": "boolean"
                        },
                        "is_validated": {
                          "type": "boolean"
                        },
                        "frequency_of_use": {
                          "type": "string",
                          "description": "Observed as an empty string on every snippet."
                        },
                        "is_authenticated": {
                          "type": "boolean"
                        },
                        "validations_passed": {
                          "type": "array",
                          "items": {
                            "type": "string"
                          },
                          "description": "e.g. ['LinkedIn']."
                        }
                      },
                      "description": "A reviewer quote with LinkedIn-style validation metadata, reused across features, pros/cons, review-topic, and customer-support-topic sections.",
                      "additionalProperties": true
                    }
                  }
                },
                "additionalProperties": true
              }
            }
          },
          "additionalProperties": true
        },
        "platforms": {
          "type": "array",
          "items": {
            "type": "object",
            "properties": {
              "name": {
                "type": "string"
              },
              "slug": {
                "type": "string"
              }
            },
            "additionalProperties": true
          }
        },
        "is_premium": {
          "type": "boolean"
        },
        "rating_avg": {
          "type": "number"
        },
        "description": {
          "type": "string"
        },
        "num_reviews": {
          "type": "number"
        },
        "rating_rank": {
          "type": "object",
          "properties": {
            "features": {
              "type": "number"
            },
            "value_for_money": {
              "type": "number"
            },
            "likelihood_to_recommend": {
              "type": "number"
            }
          },
          "description": "Observed as 0 for all three sub-scores on the one product captured.",
          "additionalProperties": true
        },
        "screenshots": {
          "type": "array",
          "items": {
            "type": "object",
            "properties": {
              "url": {
                "type": [
                  "string",
                  "null"
                ],
                "description": "The screenshot image. Value withheld (returned as `null` regardless of what the source record carried) -- only whether the field is populated is observable, not the image URL itself."
              },
              "caption": {
                "type": "string"
              },
              "displayOrder": {
                "type": "number"
              }
            },
            "additionalProperties": true
          }
        },
        "aiCapability": {
          "type": [
            "string",
            "null"
          ],
          "description": "Observed as `null` on the one product captured; a populated shape is unconfirmed."
        },
        "company_name": {
          "type": "string"
        },
        "integrations": {
          "type": "array",
          "items": {
            "type": "object",
            "properties": {
              "id": {
                "type": "string"
              },
              "name": {
                "type": "string"
              },
              "slug": {
                "type": "string"
              },
              "isVisible": {
                "type": "boolean"
              },
              "summaries": {
                "type": "array",
                "items": {
                  "type": "object",
                  "properties": {
                    "summary": {
                      "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."
                        }
                      },
                      "additionalProperties": true
                    }
                  },
                  "additionalProperties": true
                },
                "description": "Short reviewer quotes about this specific integration."
              },
              "avg_importance_rating": {
                "type": "string",
                "description": "e.g. 'High', 'Critical'."
              },
              "avg_integration_rating": {
                "type": "number"
              },
              "cnt_integration_rating": {
                "type": "number"
              }
            },
            "additionalProperties": true
          }
        },
        "licensingModel": {
          "type": [
            "string",
            "null"
          ],
          "description": "Observed as `null` on the one product captured; a populated shape is unconfirmed."
        },
        "publishedPages": {
          "type": "array",
          "items": {
            "type": "string"
          },
          "description": "Which sub-pages of the listing exist, e.g. 'alternatives', 'features'."
        },
        "countNumReviews": {
          "type": "number"
        },
        "last_updated_on": {
          "type": "string",
          "description": "ISO 8601 timestamp."
        },
        "reviews_summary": {
          "type": "object",
          "properties": {
            "topics": {
              "type": "array",
              "items": {
                "type": "object",
                "properties": {
                  "name": {
                    "type": "string"
                  },
                  "type": {
                    "type": "string",
                    "description": "e.g. 'PRO' or 'CON'."
                  },
                  "title": {
                    "type": "string"
                  },
                  "summary": {
                    "type": "string"
                  },
                  "snippets": {
                    "type": "array",
                    "items": {
                      "type": "object",
                      "properties": {
                        "id": {
                          "type": "string"
                        },
                        "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."
                        },
                        "created": {
                          "type": "string",
                          "description": "ISO 8601 timestamp."
                        },
                        "job_title": {
                          "type": "string"
                        },
                        "last_name": {
                          "type": "string",
                          "description": "The reviewer's last name, as published on the review site."
                        },
                        "time_used": {
                          "type": "string",
                          "description": "Observed as an empty string on every snippet."
                        },
                        "user_name": {
                          "type": "string",
                          "description": "The reviewer's display name, as published on the review site."
                        },
                        "first_name": {
                          "type": "string",
                          "description": "The reviewer's first name, as published on the review site."
                        },
                        "is_anonymous": {
                          "type": "boolean"
                        },
                        "is_validated": {
                          "type": "boolean"
                        },
                        "frequency_of_use": {
                          "type": "string",
                          "description": "Observed as an empty string on every snippet."
                        },
                        "is_authenticated": {
                          "type": "boolean"
                        },
                        "validations_passed": {
                          "type": "array",
                          "items": {
                            "type": "string"
                          },
                          "description": "e.g. ['LinkedIn']."
                        }
                      },
                      "description": "A reviewer quote with LinkedIn-style validation metadata, reused across features, pros/cons, review-topic, and customer-support-topic sections.",
                      "additionalProperties": true
                    }
                  },
                  "sentiment": {
                    "type": [
                      "number",
                      "null"
                    ],
                    "description": "Percent positive, when present. Observed `null` on one topic in the one fixture captured."
                  }
                },
                "additionalProperties": true
              }
            },
            "overview": {
              "type": "string"
            }
          },
          "description": "Topic-level sentiment breakdown, version 1. A near-duplicate `reviews_summaries_v2` sibling field also appears in the same response with the same shape (see below); both are populated on the one fixture captured, so both are described here.",
          "additionalProperties": true
        },
        "support_options": {
          "type": "array",
          "items": {
            "type": "string"
          }
        },
        "training_options": {
          "type": "array",
          "items": {
            "type": "string"
          }
        },
        "countIntegrations": {
          "type": "number"
        },
        "global_product_id": {
          "type": "string"
        },
        "typical_customers": {
          "type": "array",
          "items": {
            "type": "object",
            "properties": {
              "name": {
                "type": "string"
              },
              "slug": {
                "type": "string"
              }
            },
            "additionalProperties": true
          },
          "description": "Named customer-size segments, e.g. 'Small Business', 'Large Enterprises'."
        },
        "hasLiveChatEnabled": {
          "type": "boolean"
        },
        "reviews_summaries_v2": {
          "type": "object",
          "properties": {
            "topics": {
              "type": "array",
              "items": {
                "type": "object",
                "properties": {
                  "name": {
                    "type": "string"
                  },
                  "type": {
                    "type": "string",
                    "description": "e.g. 'PRO' or 'CON'."
                  },
                  "title": {
                    "type": "string"
                  },
                  "summary": {
                    "type": "string"
                  },
                  "snippets": {
                    "type": "array",
                    "items": {
                      "type": "object",
                      "properties": {
                        "id": {
                          "type": "string"
                        },
                        "text": {
                          "type": "string"
                        },
                        "type": {
                          "type": "integer",
                          "description": "Observed as an integer (0 or 1) on this reused shape's copy inside `reviews_summaries_v2.topics[].snippets[]` specifically -- contrast every other reuse of this same snippet shape elsewhere in this schema (e.g. `reviews_summary.topics[].snippets[].type`, `prosCons.{pros,cons}[].snippets[].type`), which are all observed as the string '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."
                        },
                        "created": {
                          "type": "string",
                          "description": "ISO 8601 timestamp."
                        },
                        "job_title": {
                          "type": "string"
                        },
                        "last_name": {
                          "type": "string",
                          "description": "The reviewer's last name, as published on the review site."
                        },
                        "time_used": {
                          "type": "string",
                          "description": "Observed as an empty string on every snippet."
                        },
                        "user_name": {
                          "type": "string",
                          "description": "The reviewer's display name, as published on the review site."
                        },
                        "first_name": {
                          "type": "string",
                          "description": "The reviewer's first name, as published on the review site."
                        },
                        "is_anonymous": {
                          "type": "boolean"
                        },
                        "is_validated": {
                          "type": "boolean"
                        },
                        "frequency_of_use": {
                          "type": "string",
                          "description": "Observed as an empty string on every snippet."
                        },
                        "is_authenticated": {
                          "type": "boolean"
                        },
                        "validations_passed": {
                          "type": "array",
                          "items": {
                            "type": "string"
                          },
                          "description": "e.g. ['LinkedIn']."
                        }
                      },
                      "description": "A reviewer quote with LinkedIn-style validation metadata, reused across features, pros/cons, review-topic, and customer-support-topic sections.",
                      "additionalProperties": true
                    }
                  },
                  "sentiment": {
                    "type": "number",
                    "description": "Percent positive. Observed as a number on every topic in the one fixture captured."
                  }
                },
                "additionalProperties": true
              }
            },
            "overview": {
              "type": "string"
            }
          },
          "description": "Topic-level sentiment breakdown, version 2 -- see `reviews_summary` above.",
          "additionalProperties": true
        },
        "key_takeaways_summary": {
          "type": "object",
          "properties": {
            "summary": {
              "type": "string"
            },
            "key_takeaways": {
              "type": "array",
              "items": {
                "type": "object",
                "properties": {
                  "title": {
                    "type": "string"
                  },
                  "summary": {
                    "type": "string"
                  }
                },
                "additionalProperties": true
              }
            }
          },
          "additionalProperties": true
        },
        "value_for_money_summary": {
          "type": [
            "string",
            "null"
          ],
          "description": "Observed as `null` on the one product captured; a populated shape is unconfirmed."
        },
        "customer_support_summary": {
          "type": "object",
          "properties": {
            "cons": {
              "type": "object",
              "properties": {
                "summary": {
                  "type": "array",
                  "items": {
                    "type": "string"
                  }
                },
                "snippets": {
                  "type": "array",
                  "items": {
                    "type": "object",
                    "properties": {
                      "id": {
                        "type": "string"
                      },
                      "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."
                      },
                      "created": {
                        "type": "string",
                        "description": "ISO 8601 timestamp."
                      },
                      "job_title": {
                        "type": "string"
                      },
                      "last_name": {
                        "type": "string",
                        "description": "The reviewer's last name, as published on the review site."
                      },
                      "time_used": {
                        "type": "string",
                        "description": "Observed as an empty string on every snippet."
                      },
                      "user_name": {
                        "type": "string",
                        "description": "The reviewer's display name, as published on the review site."
                      },
                      "first_name": {
                        "type": "string",
                        "description": "The reviewer's first name, as published on the review site."
                      },
                      "is_anonymous": {
                        "type": "boolean"
                      },
                      "is_validated": {
                        "type": "boolean"
                      },
                      "frequency_of_use": {
                        "type": "string",
                        "description": "Observed as an empty string on every snippet."
                      },
                      "is_authenticated": {
                        "type": "boolean"
                      },
                      "validations_passed": {
                        "type": "array",
                        "items": {
                          "type": "string"
                        },
                        "description": "e.g. ['LinkedIn']."
                      }
                    },
                    "description": "A reviewer quote with LinkedIn-style validation metadata, reused across features, pros/cons, review-topic, and customer-support-topic sections.",
                    "additionalProperties": true
                  }
                }
              },
              "additionalProperties": true
            },
            "pros": {
              "type": "object",
              "properties": {
                "summary": {
                  "type": "array",
                  "items": {
                    "type": "string"
                  }
                },
                "snippets": {
                  "type": "array",
                  "items": {
                    "type": "object",
                    "properties": {
                      "id": {
                        "type": "string"
                      },
                      "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."
                      },
                      "created": {
                        "type": "string",
                        "description": "ISO 8601 timestamp."
                      },
                      "job_title": {
                        "type": "string"
                      },
                      "last_name": {
                        "type": "string",
                        "description": "The reviewer's last name, as published on the review site."
                      },
                      "time_used": {
                        "type": "string",
                        "description": "Observed as an empty string on every snippet."
                      },
                      "user_name": {
                        "type": "string",
                        "description": "The reviewer's display name, as published on the review site."
                      },
                      "first_name": {
                        "type": "string",
                        "description": "The reviewer's first name, as published on the review site."
                      },
                      "is_anonymous": {
                        "type": "boolean"
                      },
                      "is_validated": {
                        "type": "boolean"
                      },
                      "frequency_of_use": {
                        "type": "string",
                        "description": "Observed as an empty string on every snippet."
                      },
                      "is_authenticated": {
                        "type": "boolean"
                      },
                      "validations_passed": {
                        "type": "array",
                        "items": {
                          "type": "string"
                        },
                        "description": "e.g. ['LinkedIn']."
                      }
                    },
                    "description": "A reviewer quote with LinkedIn-style validation metadata, reused across features, pros/cons, review-topic, and customer-support-topic sections.",
                    "additionalProperties": true
                  }
                }
              },
              "additionalProperties": true
            },
            "num_review": {
              "type": [
                "number",
                "null"
              ],
              "description": "Observed `null` on the one product captured."
            }
          },
          "additionalProperties": true
        }
      },
      "additionalProperties": true
    },
    "status": {
      "type": "string",
      "description": "'success' on the one found-product call observed."
    }
  },
  "description": "The product profile, 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 `invalid-slug-error` 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 15, 2026