GET /api/milestones/
List all milestone guides
All 25 guides with day count, group, and a guide_url each.
Request
Parameters
None — just call it.
What you get back
countAlways 25.milestonesOne entry per guide: slug, name, emoji, day, group (monthly | special-days | birthdays), special, description, guide_url.linksThe milestones 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": 25,
"milestones": [
{
"slug": "6-months",
"name": "6 Months",
"emoji": "🎂",
"day": 180,
"group": "monthly",
"special": true,
"description": "Half a year already! Sitting up, first foods ...",
"guide_url": "https://babyagecalculator.com/milestones/6-months/"
},
"... 24 more guides ..."
],
"links": {
"all_milestones": "https://babyagecalculator.com/milestones/"
}
}
}