Skip to content

Creative Project Numerology

The Creative Project Numerology endpoint analyzes a title in relation to its creator, release date, project type, and audience intention. 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/creative-project-numerology
POST https://api.numerologyapi.com/api/v1/creative-project-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
creator_name string Yes length 1..160 Creator name
creator_dob string Yes YYYY-MM-DD Creator date of birth
project_title string Yes length 1..180 Project title
project_type string No book book, film, album, podcast, game, artwork, course, campaign Project type
release_date string No null YYYY-MM-DD Optional release date
audience_goal string No emotional_impact emotional_impact, educational_value, entertainment, spiritual_growth, commercial_success Audience goal
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
creator_name string Yes length 1..160 Creator name
creator_dob string Yes YYYY-MM-DD Creator date of birth
project_title string Yes length 1..180 Project title
project_type string No book book, film, album, podcast, game, artwork, course, campaign Project type
release_date string No null YYYY-MM-DD Optional release date
audience_goal string No emotional_impact emotional_impact, educational_value, entertainment, spiritual_growth, commercial_success Audience goal
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/creative-project-numerology?creator_name=Nadia%20Okafor&creator_dob=1990-12-01&project_title=Letters%20from%20the%20Seventh%20Sky&project_type=book&release_date=2027-09-09&audience_goal=emotional_impact&num_sys=vedic&lang=en"

POST

curl -X POST "https://api.numerologyapi.com/api/v1/creative-project-numerology?lang=en" \
  -H "X-API-Key: YOUR_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{
  "creator_name": "Nadia Okafor",
  "creator_dob": "1990-12-01",
  "project_title": "Letters from the Seventh Sky",
  "project_type": "book",
  "release_date": "2027-09-09",
  "audience_goal": "emotional_impact",
  "num_sys": "vedic"
}'

POST Body Example

{
  "creator_name": "Nadia Okafor",
  "creator_dob": "1990-12-01",
  "project_title": "Letters from the Seventh Sky",
  "project_type": "book",
  "release_date": "2027-09-09",
  "audience_goal": "emotional_impact",
  "num_sys": "vedic"
}

Response Highlights

  • project_title_number
  • release_date_number
  • creator_project_bridge_number
  • project_scores
  • resonance_band
  • meaning

Response Example Shape

{
  "numerology_system": "pythagorean",
  "meaning": { "title": "...", "overview": "..." },
  "detailed_meaning": "...",
  "_api_metadata_": {
    "endpoint_name": "creative_project_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.