POST /v1/leads/score

Evaluez 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 reseau social et obtenez un score d'intention, un matching ICP et un raisonnement IA.

Limites de requetes : Chaque appel compte comme 1 requete dans votre quota mensuel. Plan Growth : 500 requetes/mois. Plan Scale : illimite. Verifiez votre quota restant avec GET /v1/usage.

Parametres

ParamTypeRequisDescription
contentstringOuiLe texte a evaluer (min 10 caracteres)
keywordstringNonMot-cle pour un scoring contextuel
contextstringNonContexte additionnel sur votre produit/service

Requete

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"}'

Reponse

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

Champs de la reponse

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

Guides connexes