Overview
Numerology content divides into two kinds: evergreen explainers about what each number means, and interactive summaries a reader generates from their own name and date. The numerology endpoints support both. Examples use Aarav Sharma, born 1990-08-15.
This is a publishing workflow. See Documentation for the endpoints, systems, and plan gates you will build on.
Reusable Number Cards
For an explainer library, you do not need the API on every page view. The numbers 1–9 and the master numbers 11, 22, and 33 are a fixed set, so you can author a card for each once and publish them as static content. Use the core endpoint while authoring to confirm which number a sample profile resolves to, then write the editorial copy around it.
Interactive Profile Summaries
For a “find your numbers” feature, call the core endpoint with the reader’s input and assemble a summary from the response:
curl -X POST https://panchang.devdarsha.com/v1/numerology/core \
-H "content-type: application/json" \
-H "x-api-key: YOUR_API_KEY" \
-d '{"name":"Aarav Sharma","date":"1990-08-15","system":"pythagorean"}'Map each returned number to the matching evergreen card, so an interactive result links straight into your explainer library.
Compatibility Explainers
A compatibility feature can pair two readers’ inputs through the compatibility endpoint (a pro-tier feature) and present the result next to an explainer of how the comparison works. Surface the underlying numbers, keep the copy factual, and let readers interpret the outcome themselves.
Interactive results are deterministic, so cache them against the reader’s input. Evergreen cards are static. Between the two, reader traffic rarely needs to reach the API directly.
Rollout Planning
Estimate calls from interactive features only, since explainers are static. Test representative inputs in Playground, confirm your UI handles optional or plan-gated fields, and store the X-Request-ID for support cases. Richer features — such as the structured /report and personal cycles — are live and plan-gated, so pick the tier that matches the depth you present.