TraceItX has two HTTP APIs: the ingest API your SDKs already call to submit reports, and the v1 ticket API for creating tickets from your own systems — CI, scripts, a bot. If you had this page bookmarked for the ingest API, it's still here, just one click away.
Ingest API
Where reports go. The SDKs call it for you; you only need the raw contract when building a custom client. Authenticated with your app's SDK key, which ships inside your application.
Ticket API (v1)
Create tickets from your own systems — CI, scripts, a bot. Authenticated with an API token you generate in the dashboard. Because a token can write into your projects, it is a different credential from an SDK key and must never be embedded in a shipped application.
Which credential?
| SDK key | API token | |
|---|---|---|
| Prefix | txx_live_ | txx_api_ |
| Lives in | Your shipped app | Your CI or server, never shipped |
| Scope | One app | An organisation, optionally narrowed to projects |
| Can | Submit reports | Create tickets |
| Recoverable | Yes, from the dashboard | No — shown once, then rotate |