Tracker API
Tracker API provides a production-ready backend for inventory, shipment, and asset-tracking workflows. Endpoints cover user management, item types, items, status updates, permission management, health checks, and a root endpoint. Role-based access control enforces admin vs standard user behavior: admins have unrestricted actions; standard users require explicit POST/GET/PUT/DELETE permissions…
Tracker API endpoints
| Method | Endpoint | Description |
|---|---|---|
| General | ||
| GET |
Root / |
Welcome tho the Tracker API |
| GET |
Health Check /health |
Check the health of the service. If the server goes to sleep, you can use this request to wake it up. |
| Auth | ||
| POST |
Login Admin /api/v1/login |
Login Users(Admin & Standart). When successfully login, bearer token is received. |
| POST |
Register Admin /api/v1/register |
Register Admin with Rapid API key. |
| Users | ||
| POST |
Create Standart User /api/v1/users |
Create Standart User (Permission : admin role) |
| POST |
Login Standart User /api/v1/login |
Login Standart User |
| GET |
Get User (Admin Role) /api/v1/user |
Get user based on user_id |
| GET |
Get List of the Users (Admin Role) /api/v1/users |
Get list of the user that were generated by admin. |
| Item Types (Admin Role) | ||
| GET |
List Item Types /api/v1/item-types |
List Item Types(only admin role) |
| POST |
Create Item Types /api/v1/item-types |
Create Item Types (only admin role) |
| Permissions (Admin Role) | ||
| POST |
Grant Permission /api/v1/permissions |
Grant Permission (only admin role) [POST,GET;PUT;DELETE] |
| GET |
Get Permission /api/v1/permission |
Get Permission by permission id (only admin role) |
| GET |
Get All Permissions /api/v1/permissions |
Get all permissions (only admin role) |
| DELETE |
Revoke Permission /api/v1/permission |
Revoke Permission (only admin role) |
| Items for Admin Users | ||
| DELETE |
Delete Item Operation for Admin Role /api/v1/item |
Delete item. Please update the bearer token. |
| PUT |
Update Item Operation for Admin Role /api/v1/item |
Update item. Please update the bearer token. |
| GET |
List Items Operation for Admin Role /api/v1/items |
Listing items related with user. Please update the bearer token. |
| GET |
Get Item Operation for Admin Role /api/v1/item |
Get item. Please update the bearer token. |
| POST |
Create Item Operation for Admin Role /api/v1/item |
Create Item based on item_types Please update the bearer token. |
| Items for Standart User | ||
| POST |
Create Item /api/v1/item |
Create Item based on item_types Please update the bearer token. |
| GET |
List Items /api/v1/items |
Listing items related with user. Please update the bearer token. |
| PUT |
Update Item /api/v1/item |
Update item. Please update the bearer token. |
| DELETE |
Delete Item /api/v1/item |
Delete item. Please update the bearer token. |
| GET |
Get Item /api/v1/item |
Get item. Please update the bearer token. |
| Status Update for Admin Users | ||
| GET |
Get All Status Updates Operation for Admin Role /api/v1/statuses |
Getting all status updates. Please update the bearer token. |
| GET |
Get Item Status Update Operation for Admin Role /api/v1/items/statuses |
Getting item status updates. Please update the bearer token. Admin can use this service, standard user can used this service that has permission. |
| POST |
Create Status Update Operation for Admin Role /api/v1/items/statuses |
Create status update Please update the bearer token. Admin can use this service, standard user can used this service that has permission. |
| Status Updates | ||
| GET |
Get All Status Updates /api/v1/statuses |
Getting all status updates Please update the bearer token. Admin can use this service, standard user can used this service that has permission. |
| GET |
Get Item Status Update /api/v1/items/statuses |
Getting item status updates. Please update the bearer token. Admin can use this service, standard user can used this service that has permission. |
| POST |
Create Status Update /api/v1/items/statuses |
Create status update Please update the bearer token. Admin can use this service, standard user can used this service that has permission. |
Tracker API pricing
| Plan | Price | Rate limit | Quotas |
|---|---|---|---|
| BASIC | Free | — |
|
| PRO | $9 / month | — |
|
| ULTRA | $29 / month | — |
|
| MEGA | $149 / month | — |
|