Getting Started
How to
- GETAuthentication
- GETZapier account list
- Stored Vs. Stateless Actions
- Stored actions
- Stateless actions
- Gathering action information
API Reference
- system
- auth
- apps
- actions
- execution
- ai-actions
- utilities
Libraries
- TypeScript (Node.js, Deno)
- React Components
Development Resources
utilities
Guess Actions
POST
/
api
/
v2
/
guess-actions
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
}
]
Authorizations
Body
application/json
Response
200 - application/json
OK
The response is of type object[]
.
Was this page helpful?
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
}
]