# convrgent.ai Content Strategy for Conversion

> convrgent.ai Content Strategy for Conversion is a paid API for AI agents from convrgent.ai, paid per call via x402, $1.5/call, status unknown (last checked 2026-09-13).

Returns content strategy recommendations—types, formats, channels, cadence, and trust-building touchpoints—tailored to a specific buyer personality profile.

## Facts

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

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

Example prompt: Based on the convrgent.ai vault profile for this buyer — a high-openness, low-risk-tolerance INTJ — tell me what content types, formats, channels, and posting cadence will convert them, and what email subject line style and social proof format will build the most trust.

## When to prefer this

Use this endpoint when you have an existing buyer personality profile (from convrgent.ai vault) and need to generate a personalized content strategy for conversion. Prefer this over generic content strategy tools when the buyer's psychological profile, MBTI type, or behavioral dimensions are known and you want channel-specific, cadence-specific, and trust-calibrated recommendations rather than generic marketing advice.

## Known failure modes

- Missing or invalid personality profile ID — returns 400 with profile not found error
- Insufficient personality data to generate strategy — returns partial results or low-confidence recommendations
- Unrecognized personality dimensions — returns 422 validation error
- Rate limit exceeded — returns 429 with retry-after header
- Payment not processed (x402 protocol failure) — returns 402 requiring payment

## How this service works

Content Strategy for Conversion — what content types, formats, channels, and cadence convert this buyer personality. Trust-building touchpoint count, email subject line strategy, social proof type preference.

## Output

Returns a structured content strategy object including recommended content types (e.g. long-form, case studies), formats (video, whitepaper), channels (email, LinkedIn), optimal outreach cadence, number of trust-building touchpoints needed before conversion, email subject line strategy, and preferred social proof type for the given buyer personality.

## 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": {
      "industry": {
       "type": "string",
       "description": "Buyer's industry"
      },
      "kyh_profile": {
       "type": "object",
       "description": "Full KYH personality portrait"
      },
      "partial_data": {
       "type": "object",
       "description": "Partial personality data"
      },
      "product_category": {
       "type": "string",
       "description": "Type of product being sold"
      },
      "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",
  "topics": [
   {
    "title": "HIPAA Audit Survival Guide",
    "format": "whitepaper",
    "funnel_stage": "awareness",
    "resonance_score": 0.9
   },
   {
    "title": "ROI of Automated Compliance",
    "format": "case-study",
    "funnel_stage": "consideration",
    "resonance_score": 0.85
   }
  ],
  "messaging_dos": [
   "Cite regulations by number",
   "Include peer hospital references"
  ],
  "messaging_donts": [
   "Fear-based marketing",
   "Technical jargon without context"
  ],
  "content_strategy": {
   "tone": "authoritative-reassuring",
   "themes": [
    "compliance confidence",
    "audit readiness"
   ],
   "format_preference": "whitepapers"
  }
 }
}
```

## More

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