# convrgent.ai Sales Pitch Generator

> convrgent.ai Sales Pitch Generator is a paid API for AI agents from convrgent.ai, paid per call via x402, $2/call, status unknown (last checked 2026-09-15).

Generates a personality-matched sales pitch with adaptive framing strategy, reordered value propositions, an opening hook, objection preemption, and a CTA calibrated to the buyer's decision style.

## Facts

- Endpoint: POST https://convrgent.ai/api/kyb/pitch
- Price: $2/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-2b6d8412
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_iC-6YPACzqaFwyaWlkKfL

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-2b6d8412 -d '<json body>'
```

Example prompt: Generate a personality-matched sales pitch for our project management SaaS targeting Marcus, who has an analytical INTJ profile with high conscientiousness and low openness — use a data-framed, loss-framed strategy, front-load the ROI and efficiency value props, preempt the 'switching cost' objection, and close with a low-pressure CTA suited to a deliberate decision-maker.

## When to prefer this

Use this endpoint when you have a known or inferred personality profile for a specific buyer and need a pitch that goes beyond generic templates — particularly when framing strategy (narrative vs data, gain vs loss), objection preemption, and decision-style-calibrated CTAs matter. Prefer this over generic copywriting tools when the buyer's psychological dimensions are available from convrgent.ai's profiling endpoints.

## Known failure modes

- Missing or insufficient personality profile data returns a generic or degraded pitch
- Unrecognized personality dimensions may cause fallback to default framing
- Vague product/service description produces shallow or misaligned value propositions
- Invalid or malformed request body returns a 400 error
- Payment failure or insufficient USDC balance returns a 402 error

## How this service works

Sales Pitch Generator — personality-matched pitch with framing strategy (narrative vs data, gain vs loss), value propositions reordered for buyer type, opening hook, objection preemption, and CTA calibrated to decision style.

## Output

Returns a complete personality-matched sales pitch including: an opening hook tuned to the buyer's psychological profile, value propositions reordered for maximum relevance to their buyer type, a narrative-vs-data and gain-vs-loss framing choice with rationale, preemptive responses to likely objections, and a closing CTA calibrated to the buyer's decision-making style.

## 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": {
     "required": [
      "product"
     ],
     "properties": {
      "channel": {
       "enum": [
        "email",
        "chat",
        "call",
        "landing-page",
        "ad"
       ],
       "type": "string",
       "description": "Sales channel"
      },
      "product": {
       "type": "string",
       "description": "Description of the product/service being sold"
      },
      "kyh_profile": {
       "type": "object",
       "description": "Full KYH personality portrait"
      },
      "partial_data": {
       "type": "object",
       "description": "Partial personality data"
      },
      "buyer_description": {
       "type": "string",
       "description": "Text description of the buyer"
      }
     }
    },
    "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",
  "alternatives": [
   {
    "hook": "...",
    "angle": "cost-savings"
   }
  ],
  "pitch_framework": {
   "cta": "...",
   "hook": "Cut forecasting errors by 40%",
   "proof": "...",
   "value_prop": "..."
  },
  "channel_adaptation": {
   "format": "bullet-points",
   "length": "short",
   "opening": "...",
   "subject_line": "..."
  },
  "personality_alignment": {
   "tone": "direct-professional",
   "avoid": "feature-dumping",
   "lead_with": "results"
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/convrgent-ai-2b6d8412/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)
