Quickstart
Scan a domain and get instant recommendations. This example shows the simplest way to run a domain scan via our HTTP API.
POST https://api.luxstie.com/v1/scan
Content-Type: application/json
Authorization: Bearer <API_KEY>
{
"domain": "example.com",
"checks": ["spf","dkim","dmarc","content"]
}
Response (200):
{
"scan_id": "scan_01ABCDEFG",
"domain": "example.com",
"status": "queued"
}
Poll the scan result with GET /v1/scans/:scan_id
or register a webhook to receive results automatically.