Skip to main content
GET
/
scans
List Scans
curl --request GET \
  --url https://rts-senthrex.slayers.tech/scans \
  --header 'Authorization: Bearer <token>'
{
  "scans": [
    {}
  ],
  "total_scans": 123,
  "active_scans": 123
}

List scans

Returns an array of scans along with total_scans and active_scans.

Query parameters

  • limit (optional): max scans to return (default: 50)
  • status_filter (optional): filter scans by status

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Query Parameters

limit
integer
default:50

Maximum number of scans to return

status_filter
string | null

Filter by status

Response

Successful Response

Response for the scan listing endpoint.

Attributes: scans: List of scan summary dictionaries. total_scans: Total number of scans tracked by the API. active_scans: Number of scans currently running or pending.

scans
Scans · object[]
required
total_scans
integer
required
active_scans
integer
required