Baby Age Calculator
GET /api/zodiac/

List all zodiac signs

All 12 signs with dates, element, nickname, and a guide_url each.

Request

HTTPTry it →
GET https://babyagecalculator.com/api/zodiac/

Parameters

None — just call it.

What you get back

countAlways 12.
signsOne entry per sign: slug, name, emoji, dates, element, nickname, description, guide_url.
linksThe zodiac list page.
JSON
{
  "code": 200,
  "error": null,
  "meta": {
    "name": "Baby Age Calculator API",
    "description": "Free JSON API for baby age, zodiac sign, and milestones. No key, no sign-up.",
    "docs_url": "https://babyagecalculator.com/docs/",
    "llms_txt": "https://babyagecalculator.com/llms.txt",
    "attribution": "Data by Baby Age Calculator (https://babyagecalculator.com) — please link the guide_url pages when you show this to users."
  },
  "data": {
    "count": 12,
    "signs": [
      {
        "slug": "leo",
        "name": "Leo",
        "emoji": "♌",
        "dates": "July 23 - August 22",
        "element": "Fire",
        "nickname": "The Little Performer",
        "description": "A warm, simple guide to your Leo baby ...",
        "guide_url": "https://babyagecalculator.com/zodiac/leo/"
      },
      "... 11 more signs ..."
    ],
    "links": {
      "all_zodiac_signs": "https://babyagecalculator.com/zodiac/"
    }
  }
}