REST API
Dashboard API
Generated from the Celerp 2.4.0 OpenAPI schema, 16 September 2026.
GET /dashboard/activity
Get Activity
Parameters
| Name | In | Required | Type | Description |
|---|
limit | query | -- | integer | -- |
Responses
| Status | Description | Body |
|---|
200 | Successful Response | object |
422 | Validation Error | HTTPValidationError |
Example
curl -X GET http://localhost:8000/dashboard/activity \
-H "Authorization: Bearer $TOKEN"
GET /dashboard/activity/search
Search Activity
Parameters
| Name | In | Required | Type | Description |
|---|
q | query | -- | string | -- |
date_from | query | -- | string | -- |
date_to | query | -- | string | -- |
page | query | -- | integer | -- |
per_page | query | -- | integer | -- |
Responses
| Status | Description | Body |
|---|
200 | Successful Response | object |
422 | Validation Error | HTTPValidationError |
Example
curl -X GET http://localhost:8000/dashboard/activity/search \
-H "Authorization: Bearer $TOKEN"
GET /dashboard/kpis
Get Kpis
Responses
| Status | Description | Body |
|---|
200 | Successful Response | object |
Example
curl -X GET http://localhost:8000/dashboard/kpis \
-H "Authorization: Bearer $TOKEN"