Skip to main content
POST
/
api
/
coursera
/
courses
/
syllabus
/coursera/courses/syllabus
curl --request POST \
  --url https://api.anysite.io/api/coursera/courses/syllabus \
  --header 'Content-Type: application/json' \
  --header 'access-token: <api-key>' \
  --data '
{
  "course": "<string>",
  "timeout": 300
}
'
[
  {
    "id": "<string>",
    "name": "<string>",
    "@type": "CourseraModule",
    "alias": "<string>",
    "description": "<string>",
    "time_commitment": 123,
    "lessons": []
  }
]

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"

timeout
integer
default:300

Max scrapping execution timeout (in seconds)

Required range: 20 <= x <= 1500

Response

Successful Response

id
string
required
name
string
required
@type
string
default:CourseraModule
alias
string | null
description
string | null
time_commitment
integer | null
lessons
object[]