Skip to main content
POST
/
api
/
coursera
/
courses
/
reviews
/coursera/courses/reviews
curl --request POST \
  --url https://api.anysite.io/api/coursera/courses/reviews \
  --header 'Content-Type: application/json' \
  --header 'access-token: <api-key>' \
  --data '
{
  "course": "<string>",
  "count": 2,
  "timeout": 300,
  "star": "all",
  "sort": "helpful",
  "learner_type": "all"
}
'
[
  {
    "id": "<string>",
    "@type": "CourseraReview",
    "reviewer_name": "<string>",
    "rating": 123,
    "text": "<string>",
    "helpful_count": 0,
    "is_completed": true,
    "reviewed_at": 123
  }
]

Authorizations

access-token
string
header
required

API token from the dashboard

Headers

access-token
string
required

Body

application/json
course
string
required

Coursera course slug ('python') or course URL ('https://www.coursera.org/learn/python').

Minimum string length: 1
Examples:

"python"

"https://www.coursera.org/learn/machine-learning"

count
integer
required

Max number of reviews to return

Required range: x >= 1
timeout
integer
default:300

Max scrapping execution timeout (in seconds)

Required range: 20 <= x <= 1500
star
enum<string>
default:all

Filter reviews by star rating

Available options:
all,
5,
4,
3,
2,
1
sort
enum<string>
default:helpful

Review ordering: most helpful first or newest first

Available options:
helpful,
newest
learner_type
enum<string>
default:all

Restrict to all reviewers or only those who completed the course

Available options:
all,
completed

Response

Successful Response

id
string
required
@type
string
default:CourseraReview
reviewer_name
string | null
rating
integer | null
text
string | null
helpful_count
integer
default:0
is_completed
boolean | null
reviewed_at
integer | null