Build powerful integrations with the Cenrixa REST API. Automate workflows and connect your tools.
Our RESTful API uses standard HTTP methods and returns JSON responses for easy integration.
Secure API access using Bearer tokens. Generate tokens from your account settings.
1000 requests per minute for Pro plans, 5000 for Enterprise. Headers include remaining quota.
To use the Cenrixa API, you'll need to generate an API key from your account settings. All API requests must include this key in the Authorization header.
https://api.cenrixa.com/v1
Include your API key in the Authorization header of every request:
Authorization: Bearer YOUR_API_KEY
Manage projects and their settings.
List all projects in your workspace.
Create a new project.
Get a specific project by ID.
Update a project.
Delete a project.
Create, update, and manage tasks within projects.
List all tasks in a project.
Create a new task in a project.
Here's an example of creating a new task:
curl -X POST https://api.cenrixa.com/v1/projects/123/tasks \
-H "Authorization: Bearer YOUR_API_KEY" \
-H "Content-Type: application/json" \
-d '{
"title": "Design landing page",
"description": "Create mockups for the new landing page",
"assignee_id": 456,
"due_date": "2024-03-15"
}'
200 - Success201 - Created400 - Bad Request401 - Unauthorized403 - Forbidden404 - Not Found429 - Rate Limit Exceeded500 - Internal Server ErrorIf you have questions about the API or need assistance, contact our developer support team at developers@cenrixa.com.