Skip to main content
POST
/
api
/
softwareadvice
/
products
/softwareadvice/products
curl --request POST \
  --url https://api.anysite.io/api/softwareadvice/products \
  --header 'Content-Type: application/json' \
  --header 'access-token: <api-key>' \
  --data '
{
  "product": "<string>",
  "timeout": 300
}
'
[
  {
    "id": "<string>",
    "seo_id": "<string>",
    "@type": "SoftwareadviceProduct",
    "alias": "<string>",
    "name": "<string>",
    "long_description": "<string>",
    "image": "<string>",
    "vendor_name": "<string>",
    "vendor_website_url": "<string>",
    "rating": 123,
    "review_count": 123,
    "ease_of_use_rating": 123,
    "customer_support_rating": 123,
    "value_for_money_rating": 123,
    "functionality_rating": 123,
    "advisor_recommendations_count": 123,
    "last_review_at": 123,
    "review_distribution": {
      "@type": "SoftwareadviceRatingDistribution",
      "one": 123,
      "two": 123,
      "three": 123,
      "four": 123,
      "five": 123
    },
    "pricing": {
      "@type": "SoftwareadvicePricing",
      "currency": "<string>",
      "currency_symbol": "<string>",
      "price_range": 123,
      "has_free_trial": true,
      "has_free_version": true,
      "description": "<string>",
      "plans": []
    },
    "pros": [],
    "cons": [],
    "features": [],
    "best_features": [],
    "worst_features": [],
    "product_features": [],
    "category_features": [],
    "integrations": [],
    "categories": [],
    "alternatives": [],
    "recommended_products": [],
    "frontrunner_years": [],
    "screenshots": [],
    "videos": [],
    "published_pages": [],
    "alternatives_url": "<string>",
    "reviews_url": "<string>",
    "url": "<string>"
  }
]

Authorizations

access-token
string
header
required

API token from the dashboard

Headers

access-token
string
required

Body

application/json
product
string
required

Software Advice product identifier. Accepts the category-scoped profile path ('crm/zoho-crm-profile' or '/crm/zoho-crm-profile/') or the full profile URL ('https://www.softwareadvice.com/crm/zoho-crm-profile/').

Minimum string length: 1
Pattern: ^(?:https?://[^\s]+|//[^\s]+|(?:www\.|softwareadvice\.com)[^\s]*|/?[A-Za-z0-9][A-Za-z0-9._/\-]*)$
Examples:

"crm/zoho-crm-profile"

"https://www.softwareadvice.com/crm/zoho-crm-profile/"

timeout
integer
default:300

Max scrapping execution timeout (in seconds)

Required range: 20 <= x <= 1500

Response

Successful Response

id
string
required
seo_id
string
required
@type
string
default:SoftwareadviceProduct
alias
string | null
name
string | null
long_description
string | null
image
string | null
vendor_name
string | null
vendor_website_url
string | null
rating
number | null
review_count
integer | null
ease_of_use_rating
number | null
customer_support_rating
number | null
value_for_money_rating
number | null
functionality_rating
number | null
advisor_recommendations_count
integer | null
last_review_at
integer | null
review_distribution
object | null
pricing
object | null
pros
object[]
cons
object[]
features
object[]
best_features
object[]
worst_features
object[]
product_features
string[]
category_features
string[]
integrations
object[]
categories
object[]
alternatives
object[]
frontrunner_years
string[]
screenshots
string[]
videos
string[]
published_pages
string[]
alternatives_url
string | null
reviews_url
string | null
url
string | null