Skip to main content
GET
/
v2
/
actions
Get Actions
curl --request GET \
  --url https://api.zapier.com/v2/actions \
  --header 'Authorization: Bearer <token>'
[
  {
    "links": {
      "next": "<string>",
      "prev": "<string>"
    },
    "meta": {
      "count": 1,
      "limit": 2,
      "offset": 0
    },
    "data": [
      {
        "id": "<string>",
        "key": "<string>",
        "app": {
          "id": "<string>",
          "image": "<string>",
          "links": {},
          "action_types": [
            "<unknown>"
          ],
          "title": "<string>",
          "images": {
            "url_16x16": "<string>",
            "url_32x32": "<string>",
            "url_64x64": "<string>",
            "url_128x128": "<string>"
          },
          "hex_color": "<string>",
          "categories": [
            {
              "slug": "<string>"
            }
          ],
          "description": "<string>",
          "type": "app"
        },
        "type": "action",
        "action_type": "action",
        "is_instant": true,
        "title": "<string>",
        "description": "<string>"
      }
    ]
  }
]

Authorizations

Authorization
string
header
required

See our OAuth2 authentication documentation here: https://docs.zapier.com/powered-by-zapier/api-reference/authentication

Query Parameters

action_type
enum<string>

The type of Action to filter for. Defaults to returning all actions regardless of type.

Available options:
READ,
READ_BULK,
SEARCH,
SEARCH_AND_WRITE,
SEARCH_OR_WRITE,
WRITE
app
string<uuid>
required

A canonical App ID, as provided by the /apps endpoint.

Response

The links object returned in paginated response bodies.

meta
object
required

The meta object returned in paginated response bodies.

data
object[]

List of Actions for the provided App