🖥️ API Reference
Usage
POST

POST /usage

Create a new usage event. Each event requires a category key and accepts any additional JSON serializable key-value pairs.

This endpoint requires an application API key.

URL : https://api.trckrspace.com/usage

Method : POST

Auth required : YES

Auth headers : {'X-Api-Key': '{api_key}'}

Data constraints

nametypedata typedescription
categoryrequiredstringThe category of the event. Used for filtering in dashboards.

Success Response

Code : 200 OK

Request examples

  • POST /usage --data '{"category": "string", "additionalProp1": {}}'

Content examples

For a successful response with data:

{
    'status': 'OK',
}

Error Responses

POST usage without category

Code : 400 BAD_REQUEST

Notes