Skip to main content
POST
/
api
/
softwareadvice
/
products
/
alternatives
/softwareadvice/products/alternatives
curl --request POST \
  --url https://api.anysite.io/api/softwareadvice/products/alternatives \
  --header 'Content-Type: application/json' \
  --header 'access-token: <api-key>' \
  --data '
{
  "product": "<string>",
  "count": 2,
  "timeout": 300
}
'
[
  {
    "id": "<string>",
    "seo_id": "<string>",
    "name": "<string>",
    "position": 123,
    "@type": "SoftwareadviceAlternative",
    "alias": "<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,
    "why_good": "<string>",
    "pricing": {
      "@type": "SoftwareadvicePricing",
      "currency": "<string>",
      "currency_symbol": "<string>",
      "price_range": 123,
      "has_free_trial": true,
      "has_free_version": true,
      "description": "<string>",
      "plans": []
    },
    "features": [],
    "screenshots": [],
    "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.

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/"

count
integer
required

Max number of alternatives to return

Required range: x >= 1
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
name
string
required
position
integer
required
@type
string
default:SoftwareadviceAlternative
alias
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
why_good
string | null
pricing
object | null
features
object[]
screenshots
string[]
url
string | null