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
Gathering action information
Find an app
GET
/
api
/
v2
/
apps
/
search
/
Copy
Ask AI
curl --request GET \
--url https://actions.zapier.com/api/v2/apps/search/ \
--header 'x-api-key: <api-key>'
Copy
Ask AI
{
"results": [
{
"app": "<string>",
"name": "<string>",
"logo_url": "<string>",
"auth_type": "<string>",
"actions": {}
}
]
}
Authorizations
Query Parameters
Response
200 - application/json
OK
The response is of type object
.
Was this page helpful?
Copy
Ask AI
curl --request GET \
--url https://actions.zapier.com/api/v2/apps/search/ \
--header 'x-api-key: <api-key>'
Copy
Ask AI
{
"results": [
{
"app": "<string>",
"name": "<string>",
"logo_url": "<string>",
"auth_type": "<string>",
"actions": {}
}
]
}
Assistant
Responses are generated using AI and may contain mistakes.