The CloudTask API is a REST API that allows you to integrate CloudTask with your applications. All API requests must be authenticated using an API key.
https://api.cloudtask.com/v1
Include your API key in the Authorization header:
Authorization: Bearer YOUR_API_KEY
Manage your projects programmatically.
GET /projects
POST /projects
GET /projects/:id
PUT /projects/:id
DELETE /projects/:id
Create and manage tasks within projects.
GET /projects/:id/tasks
POST /projects/:id/tasks
GET /tasks/:id
PUT /tasks/:id
DELETE /tasks/:id
Manage team members and permissions.
GET /users
GET /users/:id
PUT /users/:id
The API is rate limited to 1000 requests per hour. Rate limit headers are included in all responses.
If you have questions about the API, contact our developer support team.