Vehicle Identity Numerology
The Vehicle Identity Numerology endpoint reads a vehicle plate, optional vehicle name, purchase date, and owner profile as a symbolic vehicle identity report. 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/vehicle-identity-numerology |
POST | https://api.numerologyapi.com/api/v1/vehicle-identity-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 |
owner_name | string | Yes | — | length 1..160 | Owner name |
owner_dob | string | Yes | — | YYYY-MM-DD | Owner date of birth |
license_plate | string | Yes | — | length 1..32 | Vehicle plate or identifier |
vehicle_name | string | No | null | length 0..100 | Vehicle nickname or model name |
purchase_date | string | No | null | YYYY-MM-DD | Optional purchase date |
vehicle_type | string | No | car | car, motorcycle, truck, van, suv, bicycle, boat | Vehicle type |
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 |
owner_name | string | Yes | — | length 1..160 | Owner name |
owner_dob | string | Yes | — | YYYY-MM-DD | Owner date of birth |
license_plate | string | Yes | — | length 1..32 | Vehicle plate or identifier |
vehicle_name | string | No | null | length 0..100 | Vehicle nickname or model name |
purchase_date | string | No | null | YYYY-MM-DD | Optional purchase date |
vehicle_type | string | No | car | car, motorcycle, truck, van, suv, bicycle, boat | Vehicle type |
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/vehicle-identity-numerology?owner_name=Theo%20Martin&owner_dob=1994-02-14&license_plate=TN-4827&vehicle_name=Aurora&purchase_date=2026-10-03&vehicle_type=car&num_sys=vedic&lang=en"
POST
curl -X POST "https://api.numerologyapi.com/api/v1/vehicle-identity-numerology?lang=en" \
-H "X-API-Key: YOUR_API_KEY" \
-H "Content-Type: application/json" \
-d '{
"owner_name": "Theo Martin",
"owner_dob": "1994-02-14",
"license_plate": "TN-4827",
"vehicle_name": "Aurora",
"purchase_date": "2026-10-03",
"vehicle_type": "car",
"num_sys": "vedic"
}'
POST Body Example
{
"owner_name": "Theo Martin",
"owner_dob": "1994-02-14",
"license_plate": "TN-4827",
"vehicle_name": "Aurora",
"purchase_date": "2026-10-03",
"vehicle_type": "car",
"num_sys": "vedic"
}
Response Highlights
owner_vehicle_harmony_number plate_number vehicle_name_number purchase_date_number vehicle_scores disclaimer meaning
Response Example Shape
{
"numerology_system": "pythagorean",
"meaning": { "title": "...", "overview": "..." },
"detailed_meaning": "...",
"_api_metadata_": {
"endpoint_name": "vehicle_identity_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.