Skip to content
arunkumartopagi edited this page May 21, 2019 · 3 revisions

API /api/competition/getLiveCompetition

HTTP Method: GET
Returns: list of live competions on qunat-quest platform
Field descriptions
  • error: false if response is OK(200) or true for bad response
  • message: response status message
  • data: array of live competitions.
Sample Response Body:
{
    "error": false,
    "message": "live competition fetched successfully",
    "data": [
        {
            "title": "Auquan Challenge Spring 2019",
            "competitionName": "Winter training program",
            "description": "description about competion",
            "imageLink": "public image link",
            "location": "Universal",
            "url": "public url link",
            "startDate": "2019-02-22T18:30:59.000Z",
            "endDate": "2019-03-03T18:29:59.000Z"
        },
        {
            "title": "Optiver's quant-quest",
            "competitionName": "Optiver challenge",
            "description": "description about competion",
            "imageLink": "public image link",
            "location": "Universal",
            "url": "public url link",
            "startDate": "2019-02-22T18:30:59.000Z",
            "endDate": "2019-03-03T18:29:59.000Z"
        }
    ]
}