Build/Numerology
🔢Numerology Namespace

Numbers everyone believes in.
A business you can build today.

Over 120 million Americans believe their birth date holds meaning. Numerology is the most accessible entry point into the spiritual tech market — just a name and a date, and you have a complete personality analysis. 14 endpoints. Pythagorean and Chaldean systems. Full master number and karmic debt detection.

Get free API keyView API docs

4 businesses you can build this month

Parents spend an average of 3 weeks choosing a baby name. Adding a numerology lens — 'this name gives your child a Life Path 3: creative and expressive' — is a compelling feature for name discovery apps. NameScore also works for business names (Numerology is used in branding across Southeast Asia and the Indian diaspora). Sell as a widget to parenting apps or as a standalone $4.99 report.

Pricing Model
$4.99 per name report or $9.99/month unlimited
Build Time
1–2 weeks
Revenue Target
$2,000/month
Gross Margin
99.9% gross margin
Revenue Math

400 × $4.99 = $1,996. Baby name apps collectively see 50M+ monthly visits in the US alone. A single integration with Nameberry or BabyCenter as a premium feature could exceed $10K/mo. This is also a great first product to test demand before building a bigger numerology SaaS.

Endpoints Used
/numerology/expression
/numerology/soul-urge
/numerology/personality
/numerology/missing-numbers
APlicious Cost
$9 (Starter — 400 reports × 4 = 1,600/mo)
4 calls per name analysis per user

Starter code — YearCompass

yearcompass.ts
// YearCompass — Personal Year Numerology Planner
// Built with APlicious Numerology namespace
// Replace YOUR_API_KEY with your key from aplicious.com/dashboard

const API_BASE = "https://aplicious.com/api/v1";
const API_KEY = "YOUR_API_KEY";

async function getYearPlan(dob: string, year: number = new Date().getFullYear()) {
  const [lifePath, personalYear, pinnacles] = await Promise.all([
    fetch(`${API_BASE}/numerology/life-path?dob=${dob}`, {
      headers: { "x-api-key": API_KEY },
    }).then(r => r.json()),

    fetch(`${API_BASE}/numerology/personal-year?dob=${dob}&year=${year}`, {
      headers: { "x-api-key": API_KEY },
    }).then(r => r.json()),

    fetch(`${API_BASE}/numerology/pinnacles?dob=${dob}`, {
      headers: { "x-api-key": API_KEY },
    }).then(r => r.json()),
  ]);

  return {
    lifePathNumber: lifePath.data.life_path.number,    // 3
    lifePathMeaning: lifePath.data.life_path.meaning,  // "The Creative..."
    personalYear: personalYear.data.personal_year,     // 7
    yearTheme: personalYear.data.theme,                // "Reflection and inner growth"
    opportunities: personalYear.data.opportunities,
    currentPinnacle: pinnacles.data.pinnacles.find(p => p.start <= new Date().getFullYear()),
  };
}

// DOB format: DD/MM/YYYY  (e.g. "01/01/1990")

All 14 endpoints

/life-pathCore life purpose number from DOB
/expressionDestiny number from full birth name
/soul-urgeHeart's desire from vowels in name
/personalityOuter persona from consonants in name
/personal-yearAnnual numerological cycle + theme
/personal-dayDaily energy number + focus
/universal-dayCollective daily number for any date
/pinnaclesFour major life chapter cycles
/challengesFour core life lessons
/missing-numbersKarmic lessons from absent numbers
/name-breakdownLetter-by-letter value breakdown
/compatibilityLife path compatibility score
/lucky-numbersLucky numbers from name + DOB
/full-profileAll core numbers in one call
🔢

Start building today

Free plan · 250 API calls/month · No credit card required.