# Convrgent AI — Price Psychology Strategy

> Convrgent AI — Price Psychology Strategy is a paid API for AI agents from convrgent.ai, paid per call via x402, $1/call, status unknown (last checked 2026-09-15).

Generates optimal price presentation tactics for a specific buyer persona, including anchoring, framing, discount sensitivity, urgency triggers, payment preferences, and psychological comparison points.

## Facts

- Endpoint: POST https://convrgent.ai/api/kyb/pricing
- Price: $1/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-04f13cd7
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_cVFY6yhp63mwaqPpDBTN-

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

Example prompt: Based on my vault profile for this buyer, give me an optimal price presentation strategy for a $299/year SaaS plan — what anchoring approach, discount framing, urgency trigger, and payment structure will work best for their personality?

## When to prefer this

Use this endpoint when you have an existing convrgent.ai vault profile for a buyer and need to tailor how a specific price or offer is presented to maximize conversion. Prefer this over generic pricing advice when the buyer's personality, risk tolerance, and behavioral dimensions are known. Ideal before a sales call, sending a proposal, or triggering a checkout flow.

## Known failure modes

- Profile not found in vault — returns 404 or empty profile error if the buyer profile hasn't been initialized
- Insufficient profile data — strategy may be generic if the vault profile lacks enough behavioral signals
- Invalid or missing product/pricing context — returns validation error if required offer details are absent
- Payment failure — x402 payment of $1 USDC not completed, request rejected
- Rate limiting or wallet authorization issues

## How this service works

Price Psychology Strategy — optimal price presentation for this buyer's personality: anchoring strategy, framing, discount sensitivity, urgency trigger effectiveness, payment preferences, psychological comparison points.

## Output

Returns a structured price psychology strategy including: recommended anchoring method, price framing language, discount sensitivity rating, urgency trigger effectiveness, preferred payment modalities, and psychological comparison points tailored to the buyer's specific behavioral profile stored in the vault.

## 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_price"
     ],
     "properties": {
      "currency": {
       "type": "string",
       "description": "Currency code (default USD)"
      },
      "kyh_profile": {
       "type": "object",
       "description": "Full KYH personality portrait"
      },
      "partial_data": {
       "type": "object",
       "description": "Partial personality data"
      },
      "product_price": {
       "type": "number",
       "description": "The price to present"
      },
      "buyer_description": {
       "type": "string",
       "description": "Text description of the buyer"
      },
      "product_description": {
       "type": "string",
       "description": "Product context"
      }
     }
    },
    "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",
  "negotiation_profile": {
   "likely_asks": [
    "volume discount",
    "payment terms"
   ],
   "walk_away_risk": 0.3
  },
  "discount_sensitivity": 0.7,
  "presentation_strategy": {
   "anchor": "Compare to $2k/year alternatives",
   "framing": "per-team-member",
   "emphasis": "total-cost-of-ownership"
  },
  "psychological_pricing": {
   "rationale": "Monthly framing reduces sticker shock for process buyers",
   "suggested_display": "$41.58/mo"
  }
 }
}
```

## More

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