Skip to main content
POST
/
api
/
getapp
/
products
/
alternatives
/getapp/products/alternatives
curl --request POST \
  --url https://api.anysite.io/api/getapp/products/alternatives \
  --header 'Content-Type: application/json' \
  --header 'access-token: <api-key>' \
  --data '
{
  "product": "<string>",
  "count": 2,
  "timeout": 300,
  "min_rating": 2.5,
  "pricing_model": [],
  "devices": [],
  "organization_types": []
}
'
[
  {
    "id": "<string>",
    "alias": "<string>",
    "name": "<string>",
    "position": 123,
    "@type": "GetappAlternative",
    "seo_id": "<string>",
    "tagline": "<string>",
    "image": "<string>",
    "company_name": "<string>",
    "rating": 123,
    "review_count": 123,
    "is_premium": true,
    "ease_of_use_rating": 123,
    "customer_support_rating": 123,
    "value_for_money_rating": 123,
    "functionality_rating": 123,
    "recommendation_rating": 123,
    "has_free_trial": true,
    "has_free_version": true,
    "pricing": {
      "@type": "GetappPricing",
      "currency": "<string>",
      "currency_symbol": "<string>",
      "starting_amount": 123,
      "periodicity": "<string>",
      "pricing_model": "<string>",
      "no_credit_card_required": true,
      "price_range": 123,
      "categories": [],
      "plans": []
    },
    "top_features": [],
    "devices": [],
    "organization_types": [],
    "integrations": [],
    "url": "<string>"
  }
]

Authorizations

access-token
string
header
required

API token from the dashboard

Headers

access-token
string
required

Body

application/json
product
string
required

GetApp product identifier. Accepts product alias ('zoho-crm'), '{category}/a/{alias}' path, or full product URL.

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

"zoho-crm"

"https://www.getapp.com/customer-management-software/a/zoho-crm/"

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
min_rating
number | null

Minimum average user rating

Required range: 0 <= x <= 5
pricing_model
enum<string>[]

Filter by pricing model

Available options:
free,
open-source,
free-trial,
one-time-license,
subscription
devices
enum<string>[]

Filter by supported device/platform

Available options:
android,
chromebook,
ipad,
iphone,
linux,
mac,
web-based,
windows
organization_types
enum<string>[]

Filter by target organization type

Available options:
freelancers,
large-enterprises,
mid-size-business,
non-profits,
public-administrations,
small-business

Response

Successful Response

id
string
required
alias
string
required
name
string
required
position
integer
required
@type
string
default:GetappAlternative
seo_id
string | null
tagline
string | null
image
string | null
company_name
string | null
rating
number | null
review_count
integer | null
is_premium
boolean | null
ease_of_use_rating
number | null
customer_support_rating
number | null
value_for_money_rating
number | null
functionality_rating
number | null
recommendation_rating
number | null
has_free_trial
boolean | null
has_free_version
boolean | null
pricing
object | null
top_features
string[]
devices
string[]
organization_types
string[]
integrations
string[]
url
string | null