The 2-day free trial gives you full access to every endpoint. This guide walks through what you can test, how to make the most of 48 hours, and how to convert to a paid plan when you are ready.
The Free Trial plan gives you 2 days of full access to every endpoint — live results, history, charts, webhooks, market catalog. No credit card required. This guide walks through how to make the most of those 48 hours so you can decide with confidence whether to convert to a paid plan.
What you do NOT get:
Go to /pricing and pick the Free Trial plan. You will get a verification email — click the link inside to activate your account. The 2-day trial clock starts the moment you verify, not when you sign up, so you have time to set things up.
In your dashboard, click Generate New Key. The key will start with smk_trial_ (vs. smk_live_ for paid keys). It works exactly the same as a paid key — same endpoints, same response shape, same auth header.
export MATKA_API_KEY="smk_trial_abcd1234..."
Run these five commands to verify every major endpoint works for you:
# 1. Live board — all markets, current results
curl -H "Authorization: Bearer $MATKA_API_KEY" \
https://sattamatkaapi.live/api/results/live
# 2. Single market — Kalyan
curl -H "Authorization: Bearer $MATKA_API_KEY" \
https://sattamatkaapi.live/api/results/kalyan
# 3. History — last 7 days of Kalyan
curl -H "Authorization: Bearer $MATKA_API_KEY" \
"https://sattamatkaapi.live/api/results/history/kalyan?days=7"
# 4. Chart — last 30 jodis
curl -H "Authorization: Bearer $MATKA_API_KEY" \
https://sattamatkaapi.live/api/results/chart/jodi/kalyan
# 5. Catalog — all markets with timings
curl -H "Authorization: Bearer $MATKA_API_KEY" \
https://sattamatkaapi.live/api/markets/catalog
That uses 5 of your 1,000 trial requests and proves the entire pipeline works for you.
Pick the smallest version of your use case and build it end-to-end. For most users this is "a single page that shows the Kalyan result and refreshes every 30s".
<!DOCTYPE html>
<html>
<body>
<h1>Kalyan Result</h1>
<pre id="result">Loading…</pre>
<script>
async function refresh() {
const res = await fetch('https://sattamatkaapi.live/api/results/kalyan', {
headers: { Authorization: 'Bearer ' + MATKA_API_KEY }
})
const data = await res.json()
document.getElementById('result').textContent = JSON.stringify(data, null, 2)
}
refresh()
setInterval(refresh, 30000)
</script>
</body>
</html>
Open it in a browser. If the result loads, your integration works. You now have a known-good baseline you can extend.
Webhooks are the highest-leverage feature on the API, and they are fully available on the trial. Spin up a quick receiver (use ngrok for local testing), register it via the dashboard, send a test event, and verify your signature checking works.
See Setting Up Webhooks for Auto Result Updates for the full walkthrough.
The trial caps you at 10 requests/minute. To see what happens when you hit it:
for i in {1..15}; do
curl -s -o /dev/null -w "%{http_code}\n" \
-H "Authorization: Bearer $MATKA_API_KEY" \
https://sattamatkaapi.live/api/results/kalyan
done
You will see 200s, then a 429. The 429 response includes a Retry-After header — use that to plan your client's backoff behavior. The 429 does NOT decrement your monthly quota, so testing this is free.
While the trial is active, instrument your requests. Track:
If you are building a results site, the rule of thumb is:
When you are ready, go to your dashboard, click Upgrade, and pick a plan. Your trial key will continue to work — no need to re-issue keys or update your code. The paid plan starts immediately and your monthly quota resets.
If you need an invoice for accounting, paid plans generate a GST-compliant invoice automatically after payment verification.
The 2-day trial is genuinely enough to test the full integration if you are organized. Spend the first hour on smoke tests, the next 4 on a minimal end-to-end page, then the remaining time on webhooks and rate-limit testing. By the end of 48 hours you will know exactly which paid plan fits your needs.
Get 2 days of full access to every endpoint — live results, history, charts, webhooks. No credit card required.
View pricing & start trialUse the Satta Matka Result API to pull today’s open, jodi, and close. Field names, sample JSON, old market IDs, and how the live board maps to the API.
A live Matka result API should update within seconds of open and close. How Satta Matka API polls DPBoss, stores today only, and pushes webhooks.
An auto result API fills your matka website when open and close are declared. Satta Matka API webhooks + JSON so staff stop typing numbers.