> ## Documentation Index
> Fetch the complete documentation index at: https://docs.techslayers.ca/llms.txt
> Use this file to discover all available pages before exploring further.

# Overview

> Senthrex Simulation API for starting security scans, tracking progress, and retrieving results.

# Senthrex

Senthrex provides an authenticated security scan workflow:

1. Start a scan for a domain.
2. Track progress and status.
3. Retrieve reports, logs, and structured JSON results.
4. Stop scans when required.

<Cards>
  <Card title="Quickstart" icon="rocket" href="/senthrex/quickstart">
    Start a scan and check status end-to-end.
  </Card>

  <Card title="Authentication" icon="key-round" href="/senthrex/authentication">
    Bearer token authentication.
  </Card>

  <Card title="API Reference" icon="braces" href="/senthrex/api/start-scan-post">
    Endpoint reference with interactive requests.
  </Card>
</Cards>

## Base URL

`https://rts-senthrex.slayers.tech`

## Core resources

* Scan lifecycle:
  * Start scan: `POST /scan` (or `GET /scan`) with optional `mode` (`full` or `discovery`)
  * Status: `GET /status/{scan_uuid}`
  * Results JSON: `GET /results/{scan_uuid}`
  * Raw JSON artifact: `GET /json/{scan_uuid}`
  * Report: `GET /report/{scan_uuid}`
  * Logs: `GET /logs/{scan_uuid}`
  * Stop scan: `POST /scan/{scan_uuid}/stop`
* Fleet management:
  * List scans: `GET /scans`
  * Stats: `GET /stats`
