Kalyan is the highest-traffic matka market. This guide covers the Kalyan-specific endpoints, typical result declaration times, history depth, and chart endpoints you should use for Kalyan-focused sites.
Kalyan is, by a wide margin, the most-searched matka market on the internet. If your site shows live results, Kalyan is almost certainly your highest-traffic page. This guide covers everything API-specific about Kalyan — endpoints, declaration windows, history, charts, and the common pitfalls.
| Field | Value |
|---|---|
| Slug | kalyan |
| Session | day |
| Open time (IST) | 03:45 PM |
| Close time (IST) | 05:45 PM |
| Result frequency | Twice daily (open + close) |
The slug kalyan is the only identifier you need — all Kalyan-specific API endpoints are namespaced under /api/results/kalyan (or /api/results/{chartType}/kalyan for chart data).
The simplest Kalyan-specific call:
curl -H "Authorization: Bearer $MATKA_API_KEY" \
https://sattamatkaapi.live/api/results/kalyan
Response shape:
{
"market": {
"slug": "kalyan",
"name": "Kalyan",
"session": "day",
"openTime": "03:45 PM",
"closeTime": "05:45 PM"
},
"date": "2026-08-14",
"openPana": "456",
"openAnk": "5",
"closePana": "123",
"closeAnk": "6",
"jodi": "56",
"resultString": "456-56-123",
"isComplete": true,
"verified": true,
"source": "multi-source-consensus",
"publishedAt": "2026-08-14T12:29:42.000Z"
}
If you call this before 03:45 PM IST, you will get isComplete: false and all result fields null. Your UI should handle the pending state gracefully — most sites show a "Result awaited" placeholder.
Paid plans (Basic and above) include historical results — up to 5 years on yearly plans, 7 days on the free trial. The history endpoint:
curl -H "Authorization: Bearer $MATKA_API_KEY" \
"https://sattamatkaapi.live/api/results/history/kalyan?days=30"
Returns the last 30 days of Kalyan results, newest first, as an array of objects with the same shape as the single-result response.
Kalyan has two main chart endpoints:
# Jodi chart — last 60 jodis with dates
curl -H "Authorization: Bearer $MATKA_API_KEY" \
https://sattamatkaapi.live/api/results/chart/jodi/kalyan
# Pana chart — last 30 open+close panas with dates
curl -H "Authorization: Bearer $MATKA_API_KEY" \
https://sattamatkaapi.live/api/results/chart/panel/kalyan
The jodi chart is what most matka sites render as a colorful 10-column grid (one column per first-digit). Each tile is colored by the jodi's first digit (0–9). The pana chart is usually rendered as a date-sorted table.
See Matka Chart Analysis: Reading Jodi and Pana Patterns for an in-depth look at the patterns.
There are three Kalyan-family markets, each with its own slug:
kalyan — the main day market (03:45 PM – 05:45 PM)kalyan-night — night market (09:00 PM – 11:00 PM)kalyan-morning — morning market (11:15 AM – 12:15 PM)A common mistake is to assume "Kalyan" returns all three. It does not — each is a separate market with its own slug, history, and chart endpoints.
Kalyan Starline (kalyan-starline-{hour}) is a separate family of hourly markets. There are 12 Kalyan Starline markets, one per hour from 11:00 AM to 10:00 PM. To fetch all of them in one call:
curl -H "Authorization: Bearer $MATKA_API_KEY" \
"https://sattamatkaapi.live/api/results/live?session=starline&family=kalyan"
This returns 12 result objects, one per hourly slot.
The API typically publishes results within 1–3 minutes of the official declaration:
If your polling loop runs every 30 seconds during these windows, you will catch the result within 30 seconds of declaration. For sub-10-second latency, switch to webhooks.
kalyan (day) with kalyan-night. Always check the session field in your UI.null jodi does not mean "API is broken" — it means the close pana hasn't been declared yet. Show "Pending" instead of breaking the UI."2026-08-14"), not UTC. If your server is in UTC and you query by date, you may miss today's result depending on the time of day. Always pass the date in IST or omit it (the API defaults to today in IST).verified boolean. Only display verified results on production sites — unverified results come from a single source and may be wrong.Kalyan is the crown jewel of matka markets, and the API treats it as a first-class citizen with dedicated endpoints, history, and charts. Use the right slug, poll smartly around declaration windows, lock your UI to verified results, and your Kalyan page will feel instant and authoritative.
Get 2 days of full access to every endpoint — live results, history, charts, webhooks. No credit card required.
View pricing & start trialPull Milan Day from the Matka API. Session timing, sample JSON, old market id 18, and how to show open vs close on your site.
Rajdhani Day and Rajdhani Night on Satta Matka API — slugs, old ids, live JSON, and how to keep night sessions on the right IST date.
Jodi and pana charts are the most-studied artifacts in matka. This guide explains what they mean, how the API returns them, and the most common analytical patterns enthusiasts look for in historical data.