curl --request POST \
--url https://api.globalwebindex.com/v3/insights/search \
--header 'Authorization: <api-key>' \
--header 'Content-Type: application/json' \
--data '{
"limit": 10,
"offset": 0,
"order": "asc or desc",
"order_by": "name or published_at or created_at or updated_at or trending or popularity or id",
"query": "<string>",
"total": 123
}'
{
"insights": [
{
"description": "<string>",
"id": 123,
"images": [
{
"id": 123,
"is_main": true,
"page_preview_thumb_path": "<string>",
"page_thumb_path": "<string>",
"thumb_path": "<string>"
}
],
"name": "<string>"
}
]
}
Search insights using term.
curl --request POST \
--url https://api.globalwebindex.com/v3/insights/search \
--header 'Authorization: <api-key>' \
--header 'Content-Type: application/json' \
--data '{
"limit": 10,
"offset": 0,
"order": "asc or desc",
"order_by": "name or published_at or created_at or updated_at or trending or popularity or id",
"query": "<string>",
"total": 123
}'
{
"insights": [
{
"description": "<string>",
"id": 123,
"images": [
{
"id": 123,
"is_main": true,
"page_preview_thumb_path": "<string>",
"page_thumb_path": "<string>",
"thumb_path": "<string>"
}
],
"name": "<string>"
}
]
}
Filter Insights body
The body is of type object
.
OK
The response is of type object
.
Was this page helpful?