IT TrackrDocsAPI & MCPREST API overview
Back to docs
API & MCP

REST API overview

How to use the IT Trackr REST API to read and write data programmatically.

The IT Trackr REST API gives you programmatic access to your asset data. It's available on Pro and Enterprise plans.

Base URL

Base URL
https://www.ittrackr.com/api/v1

Authentication

All requests require a Bearer token in the Authorization header.

Header
Authorization: Bearer <your_api_key>

Available endpoints

  • GET /assets — list assets (filters: status, category, assigned_to, limit, offset)
  • GET /employees — list employees (filters: status, department, limit, offset)
  • GET /licenses — list licences (filters: category, limit, offset)
  • GET /domains — list domains (filters: status, limit, offset)
  • GET /accessories — list accessories
  • GET /components — list components
  • GET /consumables — list consumables

Response format

JSON
{
  "data": [...],
  "meta": { "count": 42, "limit": 100, "offset": 0, "timestamp": "..." }
}

Was this article helpful?