API REST simple en JSON. Lance un scan, récupère les contacts vérifiés. Auth Bearer Token, rate-limit transparent.
Récupère ton token depuis ton dashboard, puis ajoute-le en en-tête Authorization sur chaque requête.
1. Connecte-toi à ton dashboard Skrybe
2. Va dans Paramètres → API tokens
3. Clique sur « Générer un token »
Authorization: Bearer sk_live_***********************
Important : garde ton token secret. Ne le commit jamais en clair dans un repo. Si compromis, révoque-le et regénère.
3 endpoints principaux pour gérer un scan complet. JSON-only, content-type application/json requis.
{
"domain": "stripe.com",
"profile": "standard"
}
{
"scan_id": 1234,
"status": "pending",
"estimated_duration_seconds": 360
}
Authorization: Bearer {token}
Accept: application/json
{
"scan_id": 1234,
"status": "completed",
"domain": "stripe.com",
"emails_total": 187,
"emails_verified": 142,
"score_avg": 78
}
?min_score=70 &format=json &limit=100
{
"contacts": [{
"email": "a.martin@stripe.com",
"score": 94,
"name": "Alexandre Martin",
"title": "Head of Sales"
}],
"total": 142
}
Retry-After en en-tête.{"error": "...", "message": "..."}.