Vai al contenuto

Stack di Archetipi Personali

L'endpoint Stack di Archetipi Personali produce uno stack ordinato di archetipi, adatto per prodotti, derivato da numeri numerologici fondamentali. Utilizza questa pagina per regole sui parametri pronte all'integrazione, opzioni consentite ed esempi di risposta.

Endpoint

Metodo Percorso
GET https://api.numerologyapi.com/api/v1/personal-archetype-stack
POST https://api.numerologyapi.com/api/v1/personal-archetype-stack

Disponibilità

  • Autenticazione: X-API-Key (o Authorization: Bearer YOUR_API_KEY)
  • Valori supportati per lang: en, es, de, fr, pt, ar, hi, ja
  • Canale di accesso: API diretta (https://api.numerologyapi.com)
  • Gateway RapidAPI: Non attualmente supportato per endpoint estesi
  • Sistemi numerologici opzionali: pythagorean, chaldean, vedic (pythagorean è il valore predefinito)

Parametri

Parametri di Query GET| Parametro | Tipo | Obbligatorio | Valore predefinito | Opzioni | Descrizione |

|---|---|---|---|---|---| | full_name | string | Sì | | lunghezza 1..160 | Nome completo | | dob | string | Sì | | YYYY-MM-DD | Data di nascita | | include_shadow | boolean | No | true | true, false | Includere l'archetipo ombra nella risposta | | num_sys | string | No | pythagorean | pythagorean, chaldean, vedic | Sistema di numerologia utilizzato per i calcoli del nome | | lang | string | No | en | en, es, de, fr, pt, ar, hi, ja | Lingua della risposta |

Parametri della richiesta POST

Parametro Tipo Obbligatorio Valore predefinito Opzioni Descrizione
lang string No en en, es, de, fr, pt, ar, hi, ja Lingua della risposta

Parametri del corpo POST| Parametro | Tipo | Obbligatorio | Valore predefinito | Opzioni | Descrizione |

|---|---|---|---|---|---| | full_name | string | Sì | | Lunghezza 1..160 | Nome completo | | dob | string | Sì | | YYYY-MM-DD | Data di nascita | | include_shadow | boolean | No | true | true, false | Includere l'archetipo ombra nella risposta | | num_sys | string | No | pythagorean | pythagorean, chaldean, vedic | Sistema di numerologia utilizzato per i calcoli del nome |

Esempi di Richieste

GET

curl -H "X-API-Key: YOUR_API_KEY" \
  "https://api.numerologyapi.com/api/v1/personal-archetype-stack?full_name=Octavia%20Butler&dob=1947-06-22&include_shadow=true&num_sys=pythagorean&lang=en"

POST

curl -X POST "https://api.numerologyapi.com/api/v1/personal-archetype-stack?lang=en" \
  -H "X-API-Key: YOUR_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{
  "full_name": "Octavia Butler",
  "dob": "1947-06-22",
  "include_shadow": true,
  "num_sys": "pythagorean"
}'

Esempio del Corpo della Richiesta POST

{
  "full_name": "Octavia Butler",
  "dob": "1947-06-22",
  "include_shadow": true,
  "num_sys": "pythagorean"
}

Punti Salienti della Risposta

  • numbers
  • primary_archetype
  • secondary_archetype
  • shadow_archetype
  • archetype_stack
  • stack_labels
  • shadow_work_guidance

Esempio di Risposta

{
  "numerology_system": "pythagorean",
  "full_name": "Octavia Butler",
  "numbers": {
    "life_path_number": 4,
    "expression_number": 7,
    "maturity_number": 11
  },
  "primary_archetype": {
    "archetype": "sage",
    "score": 44,
    "meaning": { "title": "The Sage", "overview": "..." }
  },
  "archetype_stack": []
}

Apri il Pannello di Controllo


Nota

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.


Endpoint Correlati