Signature Numerology
The Signature Numerology endpoint compares a legal name with the signature, initials, or title a person actually uses in daily life. 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/signature-numerology |
POST | https://api.numerologyapi.com/api/v1/signature-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 |
legal_name | string | Yes | — | length 1..160 | Legal or full name |
signature_text | string | Yes | — | length 1..120 | Signature form or public mark |
dob | string | No | null | YYYY-MM-DD | Optional date of birth |
signature_context | string | No | professional | professional, personal, legal, artistic, digital | Signature context |
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 |
legal_name | string | Yes | — | length 1..160 | Legal or full name |
signature_text | string | Yes | — | length 1..120 | Signature form or public mark |
dob | string | No | null | YYYY-MM-DD | Optional date of birth |
signature_context | string | No | professional | professional, personal, legal, artistic, digital | Signature context |
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/signature-numerology?legal_name=Dr.%20Elena%20Marisol%20Vega&signature_text=E.%20M.%20Vega&dob=1985-05-17&signature_context=professional&num_sys=chaldean&lang=en"
POST
curl -X POST "https://api.numerologyapi.com/api/v1/signature-numerology?lang=en" \
-H "X-API-Key: YOUR_API_KEY" \
-H "Content-Type: application/json" \
-d '{
"legal_name": "Dr. Elena Marisol Vega",
"signature_text": "E. M. Vega",
"dob": "1985-05-17",
"signature_context": "professional",
"num_sys": "chaldean"
}'
POST Body Example
{
"legal_name": "Dr. Elena Marisol Vega",
"signature_text": "E. M. Vega",
"dob": "1985-05-17",
"signature_context": "professional",
"num_sys": "chaldean"
}
Response Highlights
legal_expression_number signature_expression_number initials_number public_identity_number legal_signature_bridge_number signature_scores meaning
Response Example Shape
{
"numerology_system": "pythagorean",
"meaning": { "title": "...", "overview": "..." },
"detailed_meaning": "...",
"_api_metadata_": {
"endpoint_name": "signature_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.