title: "Career Path Numerology" description: Developer documentation for the Career Path Numerology endpoint in The Numerology API: career strengths, work style, leadership pattern, and professional alignment 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).
Career Path Numerology¶
The Career Path Numerology endpoint returns a professional profile built from name numerology and birth-date cycles. It is useful for career guidance tools, coaching dashboards, HR-adjacent wellness flows, and personal report products. Use this page for integration-ready parameter rules, allowed options, and response examples.
Endpoint¶
| Method | Path |
|---|---|
GET | https://api.numerologyapi.com/api/v1/career-path-numerology |
POST | https://api.numerologyapi.com/api/v1/career-path-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 to analyze |
dob | string | Yes | — | YYYY-MM-DD | Date of birth |
current_role | string | No | null | length 0..120 | Current role or professional focus |
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 |
current_role | string \| null | No | null | length 0..120 | Current role or professional focus |
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/career-path-numerology?full_name=Ada%20Lovelace&dob=1815-12-10¤t_role=Mathematician&num_sys=pythagorean&lang=en"
POST¶
curl -X POST "https://api.numerologyapi.com/api/v1/career-path-numerology?lang=en" \
-H "X-API-Key: YOUR_API_KEY" \
-H "Content-Type: application/json" \
-d '{
"full_name": "Ada Lovelace",
"dob": "1815-12-10",
"current_role": "Mathematician",
"num_sys": "pythagorean"
}'
POST Body Example¶
{
"full_name": "Ada Lovelace",
"dob": "1815-12-10",
"current_role": "Mathematician",
"num_sys": "pythagorean"
}
Response Highlights¶
career_path_numbercareer_drive_numberwork_environment_numberlife_path_numberexpression_numberheart_desire_numberpersonality_numbermaturity_numbermeaningdetailed_meaning
Response Example¶
{
"numerology_system": "pythagorean",
"full_name": "Ada Lovelace",
"dob": "1815-12-10",
"current_role": "Mathematician",
"career_path_number": 1,
"life_path_number": 1,
"expression_number": 4,
"heart_desire_number": 9,
"personality_number": 22,
"maturity_number": 5,
"career_drive_profile": "self-directed ambition",
"work_environment_profile": "supportive team ecosystems",
"meaning": { "title": "The Independent Builder", "overview": "..." },
"detailed_meaning": "...",
"_api_metadata_": {
"endpoint_name": "career_path_numerology",
"response_language": "en",
"supported_languages": ["en", "es", "de", "fr", "pt", "ar", "hi", "ja"]
}
}
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.