For NGO sites, district portals, citizen-help blogs

Put a scheme eligibility check on your site

One iframe tag. No API key, no signup. Always-current dataset.

Iframe embed (easiest)

<iframe
  src="https://schemes.krakelabsindia.com"
  width="100%" height="780"
  style="border:0;border-radius:12px;max-width:900px"
  title="Govt Scheme Eligibility Navigator"
  loading="lazy">
</iframe>

Adjust the height to match your layout. The widget is fully responsive.

Or render your own UI via the API

// Or call the API directly and render your own UI
const res = await fetch("https://schemes.krakelabsindia.com/api/match", {
  method: "POST",
  headers: { "content-type": "application/json" },
  body: JSON.stringify({
    age: 32, state: "MH", gender: "female",
    annualIncome: 250000, isFarmer: false,
    isStudent: false, isBPL: false
  })
});
const { schemes } = await res.json();

See API docs for the full profile schema.

Fine print

Free for any non-commercial use.If you're an NGO, district portal, library, or citizen-help blog, embed without asking.

Eligibility is a filter, not an entitlement. Every visitor sees a clear honesty banner reminding them to verify on the official portal.

Rate-limited per visitor. The iframe + API hit a soft 30-req/min per-IP cap. Heavy commercial use? Email krakelabsindia.com.