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
apps
Search Apps
Search through all Zapier apps.
GET
/
api
/
v2
/
apps
/
search
curl --request GET \
--url https://actions.zapier.com/api/v2/apps/search/ \
--header 'x-api-key: <api-key>'
{
"results": [
{
"app": "<string>",
"name": "<string>",
"logo_url": "<string>",
"auth_type": "<string>",
"actions": {}
}
]
}
Authorizations
Query Parameters
Response
200 - application/json
OK
The key for the app.
This is used to reference the app throughout AI Actions.
The name of the app.
URL of the logo for the app.
The type of authentication that the app uses.
If this is null
, then it means that the app does not require authentication.
curl --request GET \
--url https://actions.zapier.com/api/v2/apps/search/ \
--header 'x-api-key: <api-key>'
{
"results": [
{
"app": "<string>",
"name": "<string>",
"logo_url": "<string>",
"auth_type": "<string>",
"actions": {}
}
]
}