POST /v1/leads/score

Évaluez n'importe quel contenu textuel pour l'intention d'achat. Transmettez un post social, un commentaire ou un message et recevez un score de qualification de lead par IA.

Cas d'usage : Utilisez cet endpoint pour qualifier du contenu de n'importe quelle source. Soumettez un post de réseau social et obtenez un score d'intention, un matching ICP et un raisonnement IA.

Limites de requêtes : Chaque appel compte comme 1 requête dans votre quota mensuel. Plan Growth : 500 requêtes/mois. Plan Scale : illimité. Vérifiez votre quota restant avec GET /v1/usage.

Paramètres

ParamTypeRequisDescription
contentstringOuiLe texte à évaluer (min 10 caractères)
keywordstringNonMot-clé pour un scoring contextuel
contextstringNonContexte additionnel sur votre produit/service

Requête

bash
curl -X POST https://api.buska.io/api/v1/leads/score \
      -H "x-api-key: YOUR_KEY" \
      -H "Content-Type: application/json" \
      -d '{"content": "Looking for a CRM that integrates with Slack", "keyword": "CRM"}'

Réponse

json
{
      "qualified": true,
      "score": 8,
      "intent": "ACTIVE",
      "icpMatch": "CTO",
      "reason": "Shows buying signal for CRM solutions"
    }

Champs de la réponse

ChampTypeDescription
qualifiedbooleanSi le contenu montre une intention d'achat
scorenumberScore IA de 0 à 10
intentstringType d'intention (ACTIVE, COMPETITOR, PAIN, QUESTION, MENTION)
icpMatchstring | nullNom de l'ICP correspondant, ou null
reasonstringExplication IA du score

Guides connexes