Numerology Method Registry
/api/v1/numerology/methodsDiscover every supported numerology system, versioned profile, compatible policy combination, calculation slug, source, and request/response discriminator before constructing a profile request.
Full URL
https://api.freeastroapi.com/api/v1/numerology/methodsBuild from the registry, not from list order
Select systems by system and profiles by id. Cache the response by registry_version, but refresh when that version changes. Profile IDs and policy combinations are the stable integration contract; array order is not.
Required header
Example request
curl "https://api.freeastroapi.com/api/v1/numerology/methods" \
-H "x-api-key: YOUR_API_KEY"Response fields
Profile families
pythagoreanpythagorean-component-preserve-core-v1pythagorean-raw-date-preserve-core-v117 slugs covering core numbers, personal cycles, life cycles, name analysis, karmic lessons, passions, and debts.
chaldeanchaldean-cheiro-current-name-v1chaldean-cheiro-birth-name-v1chaldean_name_number with an explicit current- or birth-name basis.
kabbalahkabbalah-gematria-hechrechi-v1kabbalah-gematria-siduri-v1kabbalah-gematria-katan-v1kabbalah-gematria-katan-mispari-v1kabbalah-gematria-millui-alef-v1kabbalah-gematria-millui-alef-reduced-v1Simple, ordinal, per-letter reduced, total reduced, Millui, and reduced Millui Gematria.
ank_jyotishank-jyotish-civil-cheiro-navagraha-reduce-all-v1Moolank, Bhagyank, and Namank with ruling-graha metadata.
Selected registry response
This valid excerpt highlights profile discovery and both discriminators. The live response also returns complete calculations, aliases, interpretation support, alphabet references, graha metadata, method warnings, and source records.
{
"registry_version": "2026-07",
"systems": [
{
"system": "pythagorean",
"status": "supported",
"profiles": [
{
"id": "pythagorean-component-preserve-core-v1",
"required_fields": [
"subject.birth_date",
"date_context.reference_date OR subject.tz_str"
],
"policy_combinations": [
{
"master_policy": "preserve_core_11_22_33",
"compound_policy": "full_trace"
}
]
}
],
"alphabet_ids": ["pythagorean-latin-a-z-cyclic-1-9-v1"],
"supported_name_scripts": [
"Latn",
"non-Latin with caller-supplied Latin transliteration"
]
},
{
"system": "chaldean",
"profiles": [
{ "id": "chaldean-cheiro-current-name-v1", "name_source": "current" },
{ "id": "chaldean-cheiro-birth-name-v1", "name_source": "birth" }
]
},
{
"system": "kabbalah",
"profiles": [
{ "id": "kabbalah-gematria-hechrechi-v1" },
{ "id": "kabbalah-gematria-siduri-v1" },
{ "id": "kabbalah-gematria-katan-v1" },
{ "id": "kabbalah-gematria-katan-mispari-v1" },
{ "id": "kabbalah-gematria-millui-alef-v1" },
{ "id": "kabbalah-gematria-millui-alef-reduced-v1" }
]
},
{
"system": "ank_jyotish",
"profile_type": "explicit_composite_modern",
"profiles": [
{
"id": "ank-jyotish-civil-cheiro-navagraha-reduce-all-v1",
"birth_date_boundary": "civil_midnight",
"calendar": "gregory",
"date_digit_order": "DDMMYYYY",
"oracle_corpus_id": "ank-jyotish-v1-oracles-2026-07"
}
]
}
],
"request_discriminator": {
"property_path": "method.system",
"values": ["pythagorean", "chaldean", "kabbalah", "ank_jyotish"]
},
"response_discriminator": {
"property_path": "data.kind",
"values": ["pythagorean", "chaldean", "kabbalah", "ank_jyotish"]
}
}Recommended integration flow
- Fetch this registry during build, startup, or an admin configuration flow.
- Choose a profile ID and one of that profile's exact policy combinations.
- Use
required_fieldsto render or validate system-specific input controls. - Resolve every
alphabet_table_idthrough the alphabet registry instead of copying a table from prose. - Persist the chosen IDs with your result so later recalculation uses the same method contract.
- Refresh cached configuration when
registry_versionchanges.
Authentication, errors, and caching
- Missing
x-api-key: HTTP 401 with ordinary JSON. - Invalid API key: HTTP 403 with ordinary JSON.
- Standard account rate limits apply; handle HTTP 429 using the documented retry headers.
- The registry contains no subject data and is safe to cache by registry_version.
- Source URLs and locators are traceability metadata; they do not turn symbolic numerology claims into scientific findings.