POST · NUMEROLOGY

Signature Analysis

Endpoint POST https://starsapi.com/api/v3/numerology/analyze/signature

Analyzes the numerological vibration of a signature (name as signed). Compares it against birth numbers for alignment. Supports three letter-value systems — Chaldean (default), Pythagorean, and Indian — via the optional system parameter.

Authentication

Required. Three methods accepted:

MethodExample
Header (recommended)X-Api-Key: am_live_xxxxxxxxxxxx
BearerAuthorization: Bearer am_live_xxxxxxxxxxxx
Body"api_key": "am_live_xxxxxxxxxxxx"

Request body

Send a JSON object with Content-Type: application/json.

FieldTypeRequiredDescription
namestringYesFull name (first + last). Used for letter-value calculations.
yearintegerNoBirth year (enables personalization).
monthintegerNoBirth month, 112.
dayintegerNoDay of month, 131.
systemstringNoLetter-value system: pythagorean, chaldean, or indian. Default chaldean.

Response

Returns a v3 envelope with data containing the numerology results and meta with request metadata. See the code pane for a sample response.

Errors

HTTPCodeCause
400INPUT_DOB_MISSINGRequired dob field is absent.
400INPUT_NAME_MISSINGRequired name field is absent.
400INPUT_MISSINGOne or more required fields are missing.
400INPUT_INVALIDInput validation failed (bad date format, etc.).
400INVALID_PARAMInvalid system value.
401AUTH_MISSING_KEYNo API key in request.
401AUTH_INVALID_KEYKey format invalid or not found.
405METHOD_NOT_ALLOWEDNon-POST request.
429RATE_LIMIT_EXCEEDEDPlan quota exceeded.
500INTERNAL_ERRORServer error.