Skip to main content
POST
/
api
/
trustradius
/
products
/
search
/trustradius/products/search
curl --request POST \
  --url https://api.anysite.io/api/trustradius/products/search \
  --header 'Content-Type: application/json' \
  --header 'access-token: <api-key>' \
  --data '
{
  "query": "<string>",
  "count": 2,
  "timeout": 300
}
'
[
  {
    "id": "<string>",
    "alias": "<string>",
    "name": "<string>",
    "url": "<string>",
    "position": 123,
    "@type": "@trustradius_search_product",
    "image": "<string>",
    "description": "<string>",
    "score": 123,
    "rating_count": 123,
    "review_count": 123
  }
]

Authorizations

access-token
string
header
required

API token from the dashboard

Headers

access-token
string
required

Body

application/json
query
string
required

Search query

Minimum string length: 1
Examples:

"crm"

"salesforce"

count
integer
required

Max number of results 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
alias
string
required
name
string
required
url
string
required
position
integer
required
@type
string
default:@trustradius_search_product
image
string | null
description
string | null
score
number | null
rating_count
integer | null
review_count
integer | null