Skip to content

Education Path Numerology

The Education Path Numerology endpoint compares a learner with a field of study, institution, learning format, and optional enrollment date. It is part of the v1.0.2 preparation set and uses the expanded 26-locale meaning bundles.

Endpoint

Method Path
GET https://api.numerologyapi.com/api/v1/education-path-numerology
POST https://api.numerologyapi.com/api/v1/education-path-numerology

Availability

  • Authentication: X-API-Key or Authorization: Bearer YOUR_API_KEY
  • Supported lang values: en, fr, es, de, pt, ja, hi, ar, ru, tr, it, pl, nl, id, ko, th, ro, ur, gu, bn, vi, ta, te, mr, pa, zh
  • 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)
  • Release target: v1.0.2. The already-released v1.0.1 docs remain accurate at 8-language support.

Parameters

GET Query Parameters

Parameter Type Required Default Options Description
student_name string Yes length 1..160 Student name
dob string Yes YYYY-MM-DD Student date of birth
field_of_study string Yes length 1..140 Field of study
institution_name string Yes length 1..160 Institution name
learning_format string No hybrid traditional, online, hybrid, self_paced, apprenticeship Learning format
enrollment_date string No null YYYY-MM-DD Optional enrollment date
num_sys string No pythagorean pythagorean, chaldean, vedic Numerology system
lang string No en 26 supported locales Response language

POST Query Parameters

Parameter Type Required Default Options Description
lang string No en 26 supported locales Response language

POST Body Parameters

Parameter Type Required Default Options Description
student_name string Yes length 1..160 Student name
dob string Yes YYYY-MM-DD Student date of birth
field_of_study string Yes length 1..140 Field of study
institution_name string Yes length 1..160 Institution name
learning_format string No hybrid traditional, online, hybrid, self_paced, apprenticeship Learning format
enrollment_date string No null YYYY-MM-DD Optional enrollment date
num_sys string No pythagorean pythagorean, chaldean, vedic Numerology system

Request Examples

GET

curl -H "X-API-Key: YOUR_API_KEY" \
  "https://api.numerologyapi.com/api/v1/education-path-numerology?student_name=Daniel%20Kim&dob=2004-11-19&field_of_study=Computer%20Science&institution_name=Northbridge%20Institute&learning_format=hybrid&enrollment_date=2027-08-30&num_sys=chaldean&lang=en"

POST

curl -X POST "https://api.numerologyapi.com/api/v1/education-path-numerology?lang=en" \
  -H "X-API-Key: YOUR_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{
  "student_name": "Daniel Kim",
  "dob": "2004-11-19",
  "field_of_study": "Computer Science",
  "institution_name": "Northbridge Institute",
  "learning_format": "hybrid",
  "enrollment_date": "2027-08-30",
  "num_sys": "chaldean"
}'

POST Body Example

{
  "student_name": "Daniel Kim",
  "dob": "2004-11-19",
  "field_of_study": "Computer Science",
  "institution_name": "Northbridge Institute",
  "learning_format": "hybrid",
  "enrollment_date": "2027-08-30",
  "num_sys": "chaldean"
}

Response Highlights

  • education_composite_number
  • study_field_number
  • institution_number
  • enrollment_date_number
  • education_scores
  • academic_strengths_profile
  • meaning

Response Example Shape

{
  "numerology_system": "pythagorean",
  "meaning": { "title": "...", "overview": "..." },
  "detailed_meaning": "...",
  "_api_metadata_": {
    "endpoint_name": "education_path_numerology",
    "response_language": "en",
    "supported_languages": ["en", "fr", "es", "de", "pt", "ja", "hi", "ar", "ru", "tr", "it", "pl", "nl", "id", "ko", "th", "ro", "ur", "gu", "bn", "vi", "ta", "te", "mr", "pa", "zh"]
  }
}

Open Dashboard


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.