Ga naar inhoud

Lancering Timing Numerologie

# 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` (or `Authorization: Bearer YOUR_API_KEY`)
- Supported `lang` values: `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` (`pythagorean` is the default)

## Parameters

### GET Query Parameters
```| Parameter | Type | Vereist | Standaard | Opties | Beschrijving |
|---|---|---|---|---|---|
| `full_name` | `string` | Ja | `—` | lengte `1..160` | Volledige naam |
| `dob` | `string` | Ja | `—` | `YYYY-MM-DD` | Geboortedatum |
| `launch_name` | `string` | Ja | `—` | lengte `1..140` | Naam of evenement |
| `target_dates` | `array[string]` | Ja | `—` | herhaal query parameter; max `31`; waarden `YYYY-MM-DD` | Datums om te vergelijken |
| `launch_type` | `string` | Nee | `product` | `product`, `business`, `content`, `contract`, `personal` | Type lancering |
| `num_sys` | `string` | Nee | `pythagorean` | `pythagorean`, `chaldean`, `vedic` | Numerologie systeem gebruikt voor naam berekeningen |
| `lang` | `string` | Nee | `en` | `en`, `es`, `de`, `fr`, `pt`, `ar`, `hi`, `ja` | Antwoordtaal |

### POST Query Parameters

| Parameter | Type | Vereist | Standaard | Opties | Beschrijving |
|---|---|---|---|---|---|
| `lang` | `string` | Nee | `en` | `en`, `es`, `de`, `fr`, `pt`, `ar`, `hi`, `ja` | Antwoordtaal |

### POST Body Parameters

| Parameter | Type | Vereist | Standaard | Opties | Beschrijving |
|---|---|---|---|---|---|
| `full_name` | `string` | Ja | `—` | Lengte `1..160` | Volledige naam |
| `dob` | `string` | Ja | `—` | `YYYY-MM-DD` | Geboortedatum |
| `launch_name` | `string` | Ja | `—` | Lengte `1..140` | Naam of evenement |
| `target_dates` | `array[string]` | Ja | `—` | `1..31` datums | Datums om te vergelijken |
| `launch_type` | `string` | Nee | `product` | Ondersteunde type sleutels | Type lancering |
| `num_sys` | `string` | Nee | `pythagorean` | `pythagorean`, `chaldean`, `vedic` | Numerologie systeem voor naam berekeningen |

## Voorbeeldverzoeken

### GET

```bash
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"
}'

Voorbeeld van het POST-lichaam

{
  "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"
}

Belangrijke punten in de respons

  • recommended_date
  • launch_name_number
  • launch_type_number
  • dates[].timing_alignment_score
  • dates[].timing_label
  • dates[].personal_day_number
  • dates[].universal_day_number
  • dates[].meaning

Voorbeeld van de respons

{
  "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": "..." }
    }
  ]
}

Dashboard openen


Opmerking

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.


Gerelateerde endpoints