# Convrgent AI Timing Intelligence

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

Predicts optimal timing windows for specific actions over a 7-30 day forecast using planetary transits, numerology personal day, Vedic Dasha periods, and BaZi energy cycles with action-specific scoring.

## Facts

- Endpoint: POST https://convrgent.ai/api/kyh/timing
- Price: $1/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/convrgent-ai-e5963edd
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_MyW1abriPPnu8SkSDa3yR

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

Example prompt: Using my birth data — March 15, 1988, 7:42am, New York — give me a 14-day timing forecast scored specifically for contract signing and negotiation actions starting from today.

## When to prefer this

Choose this endpoint when you need multi-system astrological and numerological timing intelligence synthesized into a single forecast — specifically when the user wants day-by-day or window-by-window scoring for a specific type of action (negotiation, signing, launch, communication) rather than a static natal chart or personality profile. Prefer over general calendar tools when esoteric timing frameworks (Vedic Dasha, BaZi, planetary transits) are desired.

## Known failure modes

- Missing or invalid birth data (date, time, location) causes computation failure
- Unsupported action type returns no scoring
- Forecast window outside 7-30 day range may be rejected
- Malformed profile ID returns profile-not-found error
- Payment failure via x402 protocol blocks the call

## How this service works

Timing intelligence — predict optimal windows for interactions using planetary transits, numerology personal day, Vedic Dasha periods, and BaZi energy cycles. 7-30 day forecast with action-specific scoring.

## Output

Returns a structured 7-30 day forecast with scored timing windows for the requested action type, incorporating planetary transit analysis, numerology personal day numbers, Vedic Vimshottari Dasha period assessments, and BaZi energy cycle ratings — each day or window annotated with an action-specific score and supporting rationale.

## Example request

```json
{
 "action": "pitch",
 "location": "San Francisco, USA",
 "birth_date": "1985-06-20",
 "birth_time": "10:30",
 "range_days": 14
}
```

## 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": {
      "action": {
       "enum": [
        "pitch",
        "negotiate",
        "hire",
        "launch",
        "difficult-conversation",
        "creative-work",
        "decision",
        "general"
       ],
       "type": "string"
      },
      "human_id": {
       "type": "string",
       "description": "Optional vault profile ID"
      },
      "birthData": {
       "type": "object",
       "required": [
        "year",
        "month",
        "day",
        "location"
       ],
       "properties": {
        "day": {
         "type": "integer"
        },
        "hour": {
         "type": "integer",
         "description": "Highly recommended. Defaults to 12 if omitted."
        },
        "year": {
         "type": "integer"
        },
        "month": {
         "type": "integer"
        },
        "minute": {
         "type": "integer",
         "description": "Defaults to 0 if omitted."
        },
        "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"
        }
       }
      },
      "range_days": {
       "type": "integer",
       "description": "Forecast window in days (default: 7)"
      }
     }
    },
    "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": {
  "action": "pitch",
  "forecast": [
   {
    "date": "2026-03-22",
    "label": "excellent",
    "score": 0.85,
    "factors": [
     "Jupiter trine Sun",
     "Personal Day 1",
     "Wood energy peak"
    ]
   },
   {
    "date": "2026-03-23",
    "label": "challenging",
    "score": 0.45,
    "factors": [
     "Mercury square Mars",
     "Void of Course Moon"
    ]
   }
  ],
  "best_window": {
   "date": "2026-03-22",
   "confidence": 0.78,
   "time_of_day": "morning"
  }
 }
}
```

## More

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