Matat Docs

Matat API Reference

Authentication

All API requests must include an authentication header with a valid API key.

Authorization: Bearer <YOUR_API_KEY>
                    

Endpoints

1. Tasks Management

POST /tasks

Request Body:
{{
    "title": "string",
    "description": "string",
    "priority": 1-5,
    "deadline": "date"
}}]
                                
Response Sample:
{{
    "id": "string",
    "created_at": "date",
    "updated_at": "date"
}}]
                                

GET /tasks/{id}

Path Parameters:
  • id - the unique identifier for the task
Response Sample:
{{
    "title": "string",
    "completed": "bool",
    "assigned_to": "string"
}}]
                                

2. Project Management

POST /projects

Request Body:
{{
    "name": "string",
    "client": "string",
    "budget": "number"
}}]
                                
Response Sample:
{{
    "project_id": "string",
    "created_at": "date"
}}]
                                

Try It Out ➡️

Use the form below to interact with our API:

Sample Response:


{
  "success": true,
  "message": "Task created successfully",
  "data": {
    "task_id": "t_abcdef123456"
  }
}