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

Documentation Index

Fetch the complete documentation index at: https://docs.anysite.io/llms.txt

Use this file to discover all available pages before exploring further.

Authorizations

access-token
string
header
required

API token from the dashboard

Headers

access-token
string
required

Body

application/json
query
string
required

Search query keyword

Minimum string length: 1
Examples:

"hubspot"

"slack"

"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

name
string
required
alias
string
required
url
string
required
@type
string
default:@g2_search_product
id
integer | null
type
string | null
rating
number | null
review_count
integer
default:0
description
string | null
image
string | null