DEVELOPER HUB
BUILD WITH WARDEK
API-first security and compliance platform. Scan websites, check regulatory compliance, and integrate results into your development workflow.
QUICK START
01
CREATE ACCOUNT
Sign up for free at wardek.io
02
GET API KEY
Generate your API key from Dashboard > Settings
03
RUN FIRST SCAN
Send a POST request to /api/v1/scan with your target URL
API REFERENCE
REST API with full endpoint documentation, authentication, rate limits and error codes.
View API docs →CLI & SDK
Run scans from your terminal with npx. TypeScript SDK coming soon.
View CLI docs →CI/CD INTEGRATION
GitHub Actions workflow to scan on every push. Block deploys on critical vulnerabilities.
View CI/CD setup →EXPORT FORMATS
Export scan results as JSON, YAML, PDF or SARIF for integration with your security tools.
View export formats →CODE EXAMPLES
cURL
curl -X POST https://wardek.io/api/v1/scan \
-H "Authorization: Bearer ssk_live_..." \
-H "Content-Type: application/json" \
-d '{"url": "https://example.com"}'TypeScript
const response = await fetch(
'https://wardek.io/api/v1/scan',
{
method: 'POST',
headers: {
'Authorization': 'Bearer ssk_live_...',
'Content-Type': 'application/json',
},
body: JSON.stringify({ url: 'https://example.com' }),
}
);
const scan = await response.json();
logger.info(scan.score); // 87