Skip to main content
POST
/
api
/
v2
/
guess-actions
/
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

x-api-key
string
header
required

Body

application/json
query
string
required

Search query to use for finding actions

action_types
enum<string>[]

Type of actions to search for.

count
integer
default:25

Number of actions to return in the response

Response

200 - application/json

OK

app
string
required

The app for this guess

action
string
required

The action for this guess

action_type
enum<string>
required

Type of action

Available options:
read,
write,
search,
read_bulk
name
string
required

Name of the app and action

description
string
required

Description of the action itself

image
string
required

URL for the app's image

score
number
required

Score for this guess based on the search query

I