Our basic API is free for everyone to use over https.
Reference
Here is how to use the API
1 Getting all Durga Puja events in a location
The goal is to provide a latitude, longitude and
an optional radius. The API returns results from a square
centered at the given location and of size 2*radius.
The default value of radius is 1.0.
Endpoint:
/api/v1Parameters:
- lat=<floating-point-number>
- long=<floating-point-number>
- radius=<floating-point-number> [ optional ]
Response in JSON:
{
"list" : [
{
"lat": <latitude>
"long": <longitude>
"startdate": <start-date-in-yyyy-mm-dd>
"enddate": <end-date-in-yyyy-mm-dd>
"name": <name>
"url": <website-if-any>
"address": <street-address>
}, ...
]
}
2 Getting all Durga Puja events in the USA
Endpoint:
/api/v1/allParameters:
- country=<US | IN>
- year=<2024 | 2025>
Response in JSON: Same format as the other endpoint