title: "Wealth Code Reading" description: Developer documentation for the Wealth Code Reading endpoint in The Numerology API: money patterns, earning style, prosperity strengths, and financial growth themes from name and birth date, 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).
Wealth Code Reading¶
The Wealth Code Reading endpoint returns a money-pattern profile from the user’s name and birth date. It combines life path, expression, heart desire, personality, and birth-day numbers into a practical prosperity reading. Use this page for integration-ready parameter rules, allowed options, and response examples.
Endpoint¶
| Method | Path |
|---|---|
GET | https://api.numerologyapi.com/api/v1/wealth-code-reading |
POST | https://api.numerologyapi.com/api/v1/wealth-code-reading |
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 to analyze |
dob | string | Yes | — | YYYY-MM-DD | Date of birth |
money_focus | string | No | career_income | business_growth, debt_repair, investing, career_income, family_security | Financial focus area |
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 to analyze |
dob | string | Yes | — | YYYY-MM-DD | Date of birth |
money_focus | string | No | career_income | supported money focus keys | Financial focus area |
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/wealth-code-reading?full_name=Grace%20Hopper&dob=1906-12-09&money_focus=business_growth&num_sys=chaldean&lang=en"
POST¶
curl -X POST "https://api.numerologyapi.com/api/v1/wealth-code-reading?lang=en" \
-H "X-API-Key: YOUR_API_KEY" \
-H "Content-Type: application/json" \
-d '{
"full_name": "Grace Hopper",
"dob": "1906-12-09",
"money_focus": "business_growth",
"num_sys": "chaldean"
}'
POST Body Example¶
{
"full_name": "Grace Hopper",
"dob": "1906-12-09",
"money_focus": "business_growth",
"num_sys": "chaldean"
}
Response Highlights¶
wealth_code_numberearning_style_numbermoney_shadow_numberrisk_stylerisk_labelwealth_archetypemeaningdetailed_meaning
Response Example¶
{
"numerology_system": "chaldean",
"full_name": "Grace Hopper",
"wealth_code_number": 8,
"earning_style_number": 6,
"money_shadow_number": 3,
"risk_style": "bold",
"risk_label": "Bold",
"wealth_archetype": "Strategic Wealth Builder",
"meaning": { "title": "The Wealth Builder", "overview": "..." },
"detailed_meaning": "...",
"_api_metadata_": { "endpoint_name": "wealth_code_reading", "response_language": "en" }
}
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.