title: "Launch Timing Numerology" description: Developer documentation for the Launch Timing Numerology endpoint in The Numerology API: launch, announcement, signing, publishing, release, or ceremony-window timing, request parameter options, authentication, multilingual JSON responses, numerology system support, and production-ready examples. Extended endpoints are available only on the direct Numerology API platform (RapidAPI gateway not supported).
Launch Timing Numerology¶
The Launch Timing Numerology endpoint evaluates launch, announcement, signing, publishing, release, or ceremony windows using personal and universal timing. Use this page for integration-ready parameter rules, allowed options, and response examples.
Endpoint¶
| Method | Path |
|---|---|
GET | https://api.numerologyapi.com/api/v1/launch-timing-numerology |
POST | https://api.numerologyapi.com/api/v1/launch-timing-numerology |
Availability¶
- Authentication:
X-API-Key(orAuthorization: Bearer YOUR_API_KEY) - Supported
langvalues:en,es,de,fr,pt,ar,hi,ja - Access channel: direct API (
https://api.numerologyapi.com) - RapidAPI gateway: Not currently supported for extended endpoints
- Optional numerology systems:
pythagorean,chaldean,vedic(pythagoreanis the default)
Parameters¶
GET Query Parameters¶
| Parameter | Type | Required | Default | Options | Description |
|---|---|---|---|---|---|
full_name | string | Yes | — | length 1..160 | Full name |
dob | string | Yes | — | YYYY-MM-DD | Date of birth |
launch_name | string | Yes | — | length 1..140 | Launch or event name |
target_dates | array[string] | Yes | — | repeat query parameter; max 31; YYYY-MM-DD values | Dates to compare |
launch_type | string | No | product | product, business, content, contract, personal | Launch type |
num_sys | string | No | pythagorean | pythagorean, chaldean, vedic | Numerology system used for name calculations |
lang | string | No | en | en, es, de, fr, pt, ar, hi, ja | Response language |
POST Query Parameters¶
| Parameter | Type | Required | Default | Options | Description |
|---|---|---|---|---|---|
lang | string | No | en | en, es, de, fr, pt, ar, hi, ja | Response language |
POST Body Parameters¶
| Parameter | Type | Required | Default | Options | Description |
|---|---|---|---|---|---|
full_name | string | Yes | — | length 1..160 | Full name |
dob | string | Yes | — | YYYY-MM-DD | Date of birth |
launch_name | string | Yes | — | length 1..140 | Launch or event name |
target_dates | array[string] | Yes | — | 1..31 dates | Dates to compare |
launch_type | string | No | product | supported launch type keys | Launch type |
num_sys | string | No | pythagorean | pythagorean, chaldean, vedic | Numerology system used for name calculations |
Request Examples¶
GET¶
curl -H "X-API-Key: YOUR_API_KEY" \
"https://api.numerologyapi.com/api/v1/launch-timing-numerology?full_name=Nina%20Patel&dob=1991-02-22&launch_name=Beta%20Release&target_dates=2026-07-01&target_dates=2026-07-08&launch_type=product&lang=en"
POST¶
curl -X POST "https://api.numerologyapi.com/api/v1/launch-timing-numerology?lang=en" \
-H "X-API-Key: YOUR_API_KEY" \
-H "Content-Type: application/json" \
-d '{
"full_name": "Nina Patel",
"dob": "1991-02-22",
"launch_name": "Beta Release",
"target_dates": ["2026-07-01", "2026-07-08", "2026-07-22"],
"launch_type": "product",
"num_sys": "pythagorean"
}'
POST Body Example¶
{
"full_name": "Nina Patel",
"dob": "1991-02-22",
"launch_name": "Beta Release",
"target_dates": ["2026-07-01", "2026-07-08", "2026-07-22"],
"launch_type": "product",
"num_sys": "pythagorean"
}
Response Highlights¶
recommended_datelaunch_name_numberlaunch_type_numberdates[].timing_alignment_scoredates[].timing_labeldates[].personal_day_numberdates[].universal_day_numberdates[].meaning
Response Example¶
{
"numerology_system": "pythagorean",
"launch_name": "Beta Release",
"launch_type": "product",
"launch_name_number": 5,
"recommended_date": "2026-07-08",
"dates": [
{
"target_date": "2026-07-08",
"timing_alignment_score": 84,
"timing_label": "Strong Timing",
"personal_day_number": 8,
"universal_day_number": 7,
"meaning": { "title": "Initiation Window", "overview": "..." }
}
]
}
Note
This endpoint belongs to the Extended suite and is available through direct API access at https://api.numerologyapi.com. It is currently not supported via the RapidAPI gateway.