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/v1
Parameters: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/all
Parameters:
Response in JSON: Same format as the other endpoint