HUB DÉVELOPPEURS

CONSTRUISEZ AVEC WARDEK

Plateforme de sécurité et conformité API-first. Scannez des sites web, vérifiez la conformité réglementaire et intégrez les résultats dans votre workflow de développement.

DÉMARRAGE RAPIDE

01

CRÉER UN COMPTE

Inscrivez-vous gratuitement sur wardek.io

02

OBTENIR UNE CLÉ API

Générez votre clé API depuis Tableau de bord > Paramètres

03

LANCER LE PREMIER SCAN

Envoyez une requête POST à /api/v1/scan avec votre URL cible

EXEMPLES DE CODE

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

PRÊT À INTÉGRER ?

Obtenez votre clé API et commencez à scanner en quelques minutes.

[ OBTENIR VOTRE CLÉ API ]