Skip to main content
POST
/
api
/
udemy
/
courses
/
curriculum
/udemy/courses/curriculum
curl --request POST \
  --url https://api.anysite.io/api/udemy/courses/curriculum \
  --header 'Content-Type: application/json' \
  --header 'access-token: <api-key>' \
  --data '
{
  "course": "<string>",
  "timeout": 300
}
'
[
  {
    "@type": "UdemyCourseSection",
    "id": "<string>",
    "section_title": "<string>",
    "lectures": []
  }
]

Authorizations

access-token
string
header
required

API token from the dashboard

Headers

access-token
string
required

Body

application/json
course
string
required

Udemy course slug ('100-days-of-code'), numeric course id, or course URL.

Minimum string length: 1
Examples:

"100-days-of-code"

"2776760"

"https://www.udemy.com/course/100-days-of-code/"

timeout
integer
default:300

Max scrapping execution timeout (in seconds)

Required range: 20 <= x <= 1500

Response

Successful Response

@type
string
default:UdemyCourseSection
id
string | null
section_title
string | null
lectures
object[]