curl --request POST \
--url https://actions.zapier.com/api/v2/guess-actions/ \
--header 'Content-Type: application/json' \
--header 'x-api-key: <api-key>' \
--data '{
"query": "<string>",
"action_types": [
"write",
"search",
"read"
],
"count": 25
}'
[
{
"app": "<string>",
"action": "<string>",
"action_type": "read",
"name": "<string>",
"description": "<string>",
"image": "<string>",
"score": 123
}
]
curl --request POST \
--url https://actions.zapier.com/api/v2/guess-actions/ \
--header 'Content-Type: application/json' \
--header 'x-api-key: <api-key>' \
--data '{
"query": "<string>",
"action_types": [
"write",
"search",
"read"
],
"count": 25
}'
[
{
"app": "<string>",
"action": "<string>",
"action_type": "read",
"name": "<string>",
"description": "<string>",
"image": "<string>",
"score": 123
}
]
OK
The response is of type GuessResultSchema · object[]
.
Was this page helpful?