Course by Ratings

Course by Ratings

Course list according to ratings

HTTP REQUEST

POST https://app.alphalearn.com/webapi/v1/course-by-ratings

QUERY PARAMETERS

Field Type Description
pageSize Integer Number of records to be returned with in a single API call. Default is 20
page Integer Page number of the records.

Example Response:

200 OK
{
    "success": true,
    "data": {
        "popular_courses": [
            {
                "id": "integer",
                "title": "string",
                "courseCode": "string",
                "description": "string",
                "duration": "integer",
                "start_date": "date",
                "end_date": "date",
                "price_INR": "integer",
                "price_USD": "integer",
                "thumbnail": "string",
                "rates": "integer",
                "currency": [
                    {
                        "typeID": "integer",
                        "currencyCode": "string",
                        "price": "integer",
                        "isDefault": "integer"
                    }
                ]
            }
        ],
        "totalCount": "integer",
        "pageSize": "integer",
        "page": "integer",
        "countryCurrency": "string"
    }
}