# convrgent.ai Human Design Bodygraph

> convrgent.ai Human Design Bodygraph is a paid API for AI agents from convrgent.ai, paid per call via x402, $0.75/call, status unknown (last checked 2026-09-13).

Generates a complete Human Design bodygraph for a person including energy type, strategy, authority, profile, channels, gates, and centers based on birth data.

## Facts

- Endpoint: POST https://convrgent.ai/api/kyh/human-design
- Price: $0.75/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-4b8b04a1
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_t65a7ElxsCIjvgdUsMHYq

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

Example prompt: Can you calculate my Human Design bodygraph? I was born on March 14, 1990 at 6:45am in Chicago, Illinois — I want to know my energy type, strategy, authority, profile, and key channels and gates.

## When to prefer this

Use this endpoint when you need a detailed Human Design bodygraph calculation — specifically energy type, strategy, authority, profile, channels, gates, and centers — derived from birth data using the Ra Uru Hu system. Prefer this over generic astrology endpoints when the user explicitly asks about Human Design, their type, or decision-making guidance via the Human Design framework.

## Known failure modes

- Missing or invalid birth date returns an error
- Missing birth time may produce incomplete or inaccurate authority and gate calculations
- Unknown or ambiguous birth location may fail geocoding
- Invalid input format for date/time fields returns a validation error
- Payment not processed correctly results in 402 or authorization failure

## How this service works

Human Design bodygraph — energy type (Generator, Projector, Manifestor, Reflector, Manifesting Generator), strategy, authority, profile, channels, gates, centers, definition. Ra Uru Hu system, decision-making guidance.

## Output

Returns a structured Human Design bodygraph including the person's energy type (Generator, Projector, Manifestor, Reflector, or Manifesting Generator), strategy, inner authority, profile (e.g. 2/4, 6/3), active channels, defined gates, open and defined centers, and definition type — all derived from the Ra Uru Hu system.

## 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": [
      "birth_date",
      "location"
     ],
     "properties": {
      "latitude": {
       "type": "number",
       "description": "Optional override"
      },
      "location": {
       "type": "string",
       "description": "City and country. Coordinates auto-resolved."
      },
      "timezone": {
       "type": "number",
       "description": "Optional — auto-resolved from location"
      },
      "longitude": {
       "type": "number",
       "description": "Optional override"
      },
      "birth_date": {
       "type": "string",
       "pattern": "^\\d{4}-\\d{2}-\\d{2}$"
      },
      "birth_time": {
       "type": "string",
       "pattern": "^\\d{2}:\\d{2}$",
       "description": "Highly recommended. Defaults to 12:00 if omitted."
      }
     }
    },
    "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": {
  "type": "Generator",
  "gates": [
   "..."
  ],
  "centers": {
   "sacral": "defined",
   "solar_plexus": "undefined"
  },
  "profile": "3/5",
  "channels": [
   "..."
  ],
  "strategy": "Wait to Respond",
  "authority": "Sacral",
  "definition": "Single",
  "agent_prompt": "...",
  "interpretation": "..."
 }
}
```

## More

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