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
auth
Get Account List
Get a list of Zapier accounts for the current user.
GET
/
api
/
v2
/
auth
/
accounts
/
Copy
Ask AI
curl --request GET \
--url https://actions.zapier.com/api/v2/auth/accounts/ \
--header 'x-api-key: <api-key>'
Copy
Ask AI
{
"results": [
{
"id": 123,
"name": "<string>",
"logo_url": "<string>",
"owner": {
"name": "<string>",
"email": "<string>"
}
}
]
}
Authorizations
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/auth/accounts/ \
--header 'x-api-key: <api-key>'
Copy
Ask AI
{
"results": [
{
"id": 123,
"name": "<string>",
"logo_url": "<string>",
"owner": {
"name": "<string>",
"email": "<string>"
}
}
]
}
Assistant
Responses are generated using AI and may contain mistakes.