https://zudo.so/api/v1
What you can do
Accounts
List, retrieve, and create customer accounts.
Requests
List, retrieve, and create feature requests.
Meetings
List, retrieve, and create meetings.
Tasks
List, retrieve, and create tasks.
Contacts
List and create contacts.
Emails & Issues
Access email threads, messages, and linked issues.
Authentication
See Authentication for how to generate an API key and include it in your requests.Rate limits
The API enforces per-key rate limits. The response headers on every API call include:| Header | Description |
|---|---|
X-RateLimit-Limit | Your per-minute request quota |
X-RateLimit-Remaining | Requests remaining in the current window |
X-RateLimit-Reset | Seconds until the rate limit window resets |
429 Too Many Requests. Wait for the window to reset before retrying.
Pagination
All list endpoints return paginated results. The response includes apagination object:
page and pageSize query parameters to navigate pages. pageSize defaults to 25 and has a maximum of 100.
Error responses
All errors return a JSON object with anerror field:
| Status | Meaning |
|---|---|
400 | Bad request — missing or invalid parameters |
401 | Unauthorized — missing or invalid API key |
404 | Not found — the requested resource doesn’t exist |
405 | Method not allowed — that HTTP method isn’t supported on this endpoint |
429 | Too many requests — rate limit exceeded |
500 | Internal server error |
