title: "Home Address Numerology" description: Developer documentation for the Home Address Numerology endpoint in The Numerology API: home, office, studio, or retreat-space energy from address, unit, context, and optional move-in 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).
Home Address Numerology¶
The Home Address Numerology endpoint interprets the energetic tone of a physical address. It can be used for home, office, studio, and retreat-space readings. Use this page for integration-ready parameter rules, allowed options, and response examples.
Endpoint¶
| Method | Path |
|---|---|
GET | https://api.numerologyapi.com/api/v1/home-address-numerology |
POST | https://api.numerologyapi.com/api/v1/home-address-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 |
|---|---|---|---|---|---|
address_line | string | Yes | — | length 1..180 | Street address or address line |
unit | string | No | null | length 0..40 | Apartment, suite, or unit |
city | string | No | null | length 0..80 | City or location label |
move_in_date | string | No | null | YYYY-MM-DD | Optional move-in date |
context | string | No | home | home, office, studio, retreat | Space context |
num_sys | string | No | pythagorean | pythagorean, chaldean, vedic | Numerology system used for address letters |
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 |
|---|---|---|---|---|---|
address_line | string | Yes | — | length 1..180 | Street address or address line |
unit | string \| null | No | null | length 0..40 | Apartment, suite, or unit |
city | string \| null | No | null | length 0..80 | City or location label |
move_in_date | string \| null | No | null | YYYY-MM-DD | Optional move-in date |
context | string | No | home | supported context keys | Space context |
num_sys | string | No | pythagorean | pythagorean, chaldean, vedic | Numerology system used for address letters |
Request Examples¶
GET¶
curl -H "X-API-Key: YOUR_API_KEY" \
"https://api.numerologyapi.com/api/v1/home-address-numerology?address_line=221B%20Baker%20Street&unit=B&city=London&move_in_date=2026-07-01&context=home&lang=en"
POST¶
curl -X POST "https://api.numerologyapi.com/api/v1/home-address-numerology?lang=en" \
-H "X-API-Key: YOUR_API_KEY" \
-H "Content-Type: application/json" \
-d '{
"address_line": "221B Baker Street",
"unit": "B",
"city": "London",
"move_in_date": "2026-07-01",
"context": "home",
"num_sys": "pythagorean"
}'
POST Body Example¶
{
"address_line": "221B Baker Street",
"unit": "B",
"city": "London",
"move_in_date": "2026-07-01",
"context": "home",
"num_sys": "pythagorean"
}
Response Highlights¶
address_numberstreet_name_numbermove_in_day_numberhome_lesson_numberspace_vibeelement_associationmeaningdetailed_meaning
Response Example¶
{
"numerology_system": "pythagorean",
"address_line": "221B Baker Street",
"unit": "B",
"city": "London",
"context": "home",
"address_number": 6,
"street_name_number": 4,
"move_in_day_number": 9,
"home_lesson_number": 6,
"meaning": { "title": "The Nurturing Home", "overview": "..." },
"detailed_meaning": "..."
}
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.