# Convrgent AI Buyer Intelligence Profile

> Convrgent AI Buyer Intelligence Profile is a paid API for AI agents from convrgent.ai, paid per call via x402, $1.5/call, status unknown (last checked 2026-09-15).

Generates a buyer intelligence profile including purchase motivation, decision style, impulse/loyalty scores, price sensitivity, and Cialdini persuasion susceptibility mapping from KYH data, partial personality data, or text description.

## Facts

- Endpoint: POST https://convrgent.ai/api/kyb/profile
- Price: $1.5/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/convrgent-ai-52f9d35e
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_eV76gGLMvGtZ0eobhqcnA

Status and success rate cover calls made through Zero and Zero's own probes. Third-party monitors may report differently.

## How to call it through Zero

Zero handles the 402 payment challenge and records the run. With the Zero CLI installed (`npm i -g @zeroxyz/cli`):

```sh
zero fetch --capability convrgent-ai-52f9d35e -d '<json body>'
```

Example prompt: Build me a buyer intelligence profile for this customer — here's their purchase history and a brief description: 'mid-30s professional, frequently buys premium gadgets on impulse, hesitates on subscriptions, responds well to scarcity messaging.' I want their price sensitivity score, decision style, loyalty vs impulse scores, and a full Cialdini persuasion susceptibility breakdown.

## When to prefer this

Use this endpoint when you need actionable buyer-specific intelligence for sales, marketing personalization, or conversion optimization — particularly when you want Cialdini-framework persuasion targeting, price sensitivity scoring, and impulse/loyalty profiling in a single call. Prefer this over generic personality endpoints when the specific goal is purchase behavior analysis and sales strategy.

## Known failure modes

- Insufficient input data (too sparse a description) may yield low-confidence or generic scores
- Invalid or malformed request body returns 400 error
- Payment failure or insufficient USDC balance blocks the call
- Empty or null text input causes processing failure
- Highly ambiguous personality descriptions may produce unreliable susceptibility mappings

## How this service works

Buyer Intelligence Profile — purchase motivation, decision style, impulse/loyalty scores, price sensitivity, Cialdini persuasion susceptibility map. Personality-science-backed buyer profiling from KYH data, partial personality data, or text description.

## Output

Returns a structured buyer intelligence profile including: purchase motivation drivers, decision style classification, impulse and loyalty scores, price sensitivity rating, and a Cialdini persuasion susceptibility map (e.g., scores for social proof, scarcity, authority, reciprocity, commitment, liking) — all grounded in personality science.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "$schema": "https://json-schema.org/draft/2020-12/schema",
 "required": [
  "input"
 ],
 "properties": {
  "input": {
   "type": "object",
   "required": [
    "type",
    "bodyType",
    "body",
    "method"
   ],
   "properties": {
    "body": {
     "properties": {
      "kyh_profile": {
       "type": "object",
       "description": "Full KYH personality portrait for precision buyer intelligence"
      },
      "partial_data": {
       "type": "object",
       "description": "Partial personality data (OCEAN scores, Socionics type, etc.)"
      },
      "buyer_description": {
       "type": "string",
       "description": "Text description of the buyer for inferred mode"
      }
     }
    },
    "type": {
     "type": "string",
     "const": "http"
    },
    "method": {
     "enum": [
      "POST"
     ],
     "type": "string"
    },
    "bodyType": {
     "enum": [
      "json",
      "form-data",
      "text"
     ],
     "type": "string"
    }
   },
   "additionalProperties": false
  },
  "output": {
   "type": "object",
   "required": [
    "type"
   ],
   "properties": {
    "type": {
     "type": "string"
    },
    "example": {
     "type": "object"
    }
   }
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "json",
 "example": {
  "mode": "inferred",
  "buyer_type": "analytical-skeptic",
  "decision_style": {
   "speed": "slow",
   "drivers": [
    "data",
    "ROI",
    "risk-mitigation"
   ],
   "blockers": [
    "ambiguity",
    "hype"
   ]
  },
  "trust_triggers": [
   "case studies",
   "third-party validation",
   "transparent pricing"
  ],
  "purchase_motivators": [
   "efficiency gains",
   "risk reduction",
   "competitive advantage"
  ],
  "communication_preferences": {
   "tone": "formal-precise",
   "avoid": [
    "emotional appeals",
    "urgency tactics"
   ],
   "format": "data-first"
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/convrgent-ai-52f9d35e/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from convrgent.ai](https://www.zero.xyz/host/convrgent.ai/llms.txt)
