Skip to main content
POST
/
api
/
softwareadvice
/
products
/
search
/softwareadvice/products/search
curl --request POST \
  --url https://api.anysite.io/api/softwareadvice/products/search \
  --header 'Content-Type: application/json' \
  --header 'access-token: <api-key>' \
  --data '
{
  "category": "<string>",
  "count": 2,
  "timeout": 300,
  "sort": "recommendations",
  "min_rating": 2.5,
  "free_trial": true,
  "free_version": true,
  "max_price": 1
}
'
[
  {
    "id": "<string>",
    "seo_id": "<string>",
    "name": "<string>",
    "position": 123,
    "@type": "SoftwareadviceSearchProduct",
    "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,
    "advisor_recommendations_count": 123,
    "has_free_trial": true,
    "has_free_version": true,
    "price_range": 123,
    "pricing": {
      "@type": "SoftwareadvicePricing",
      "currency": "<string>",
      "currency_symbol": "<string>",
      "price_range": 123,
      "has_free_trial": true,
      "has_free_version": true,
      "description": "<string>",
      "plans": []
    },
    "review_distribution": {
      "@type": "SoftwareadviceRatingDistribution",
      "one": 123,
      "two": 123,
      "three": 123,
      "four": 123,
      "five": 123
    },
    "target_company_sizes": [],
    "frontrunner_years": [],
    "features": [],
    "integrations": [],
    "what_users_love": [],
    "to_take_in_mind": [],
    "reviews_past_12_months_count": 123,
    "reviews_past_6_months_count": 123,
    "modified_at": 123,
    "url": "<string>"
  }
]

Authorizations

access-token
string
header
required

API token from the dashboard

Headers

access-token
string
required

Body

application/json
category
string
required

Software Advice category slug or full category listing URL (e.g. 'crm', 'medical', 'https://www.softwareadvice.com/crm/'). Category slugs come from the categories endpoint.

Minimum string length: 1
Examples:

"crm"

"medical"

"https://www.softwareadvice.com/crm/"

count
integer
required

Max number of products to return

Required range: x >= 1
timeout
integer
default:300

Max scrapping execution timeout (in seconds)

Required range: 20 <= x <= 1500
sort
enum<string>
default:recommendations

Result ordering

Available options:
recommendations,
rating,
reviews,
name
min_rating
number | null

Minimum overall user rating

Required range: 0 <= x <= 5
free_trial
boolean | null

Only products offering a free trial

free_version
boolean | null

Only products offering a free version

company_size
enum<string> | null

Only products that serve this company-size segment

Available options:
small_business,
midsize,
enterprise
max_price
number | null

Only products with a plan starting at or below this monthly price (USD)

Required range: x >= 0

Response

Successful Response

id
string
required
seo_id
string
required
name
string
required
position
integer
required
@type
string
default:SoftwareadviceSearchProduct
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
advisor_recommendations_count
integer | null
has_free_trial
boolean | null
has_free_version
boolean | null
price_range
integer | null
pricing
object | null
review_distribution
object | null
target_company_sizes
integer[]
frontrunner_years
string[]
features
object[]
integrations
object[]
what_users_love
object[]
to_take_in_mind
object[]
reviews_past_12_months_count
integer | null
reviews_past_6_months_count
integer | null
modified_at
integer | null
url
string | null