The Tasku API allows you to integrate projects, tasks, team collaboration, notifications, webhooks, and developer tools directly into your applications.
1Pick a language
2Try It!
Loading…
Response
Click
Try It! to start a request and see the response here!With the API you can:
- Manage projects and project members
- Create, update, and organize tasks
- Work with custom statuses and priorities
- Upload and manage files
- Receive real-time updates through webhooks
- Manage API Keys and integrations
- Access developer-focused resources and automation tools
Base URL
https://api.tasku.proAuthentication
Tasku supports API Key authentication for server-to-server integrations.
Include your API Key in every request:
Authorization: Bearer YOUR_API_KEYYou can create and manage API Keys from the Tasku Developer Portal.
Make Your First Request
Retrieve information about the authenticated user:
curl --request GET \
--url https://api.tasku.pro/v1/users/me \
--header 'Authorization: Bearer YOUR_API_KEY'Example response:
{
"success": true,
"data": {
"id": "user-id",
"email": "[email protected]",
"name": "John Doe"
}
}Useful Resources
- Tasku App: https://tasku.pro
- API Documentation: https://api.tasku.pro/api/docs
- OpenAPI Specification: https://api.tasku.pro/api/docs-json
- Postman Collection: https://www.postman.com/mundostreaming/tasku/collection/17456888-598fc87b-75b5-49c6-b0b2-a38e06b8a150?action=share&source=copy-link&creator=17456888
Ready to start building? Explore the API Reference to discover all available endpoints and integration capabilities.