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

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

READY TO INTEGRATE?

Get your API key and start scanning in minutes.

[ GET YOUR API KEY ]