Skip to main content
POST
/
api
/
udemy
/
instructors
/udemy/instructors
curl --request POST \
  --url https://api.anysite.io/api/udemy/instructors \
  --header 'Content-Type: application/json' \
  --header 'access-token: <api-key>' \
  --data '
{
  "instructor": "<string>",
  "timeout": 300
}
'
[
  {
    "id": "<string>",
    "name": "<string>",
    "web_url": "<string>",
    "@type": "UdemyInstructor",
    "job_title": "<string>",
    "bio": "<string>",
    "image": "<string>",
    "alias": "<string>",
    "rating": 123,
    "student_count": 123,
    "review_count": 123,
    "course_count": 123
  }
]

Authorizations

access-token
string
header
required

API token from the dashboard

Headers

access-token
string
required

Body

application/json
instructor
string
required

Udemy instructor numeric user id (from a course's instructors[].id) or a numeric-id instructor URL (e.g. /user/31334738/). Alias-style profile URLs are not supported.

Minimum string length: 1
Examples:

"31334738"

"https://www.udemy.com/user/31334738/"

timeout
integer
default:300

Max scrapping execution timeout (in seconds)

Required range: 20 <= x <= 1500

Response

Successful Response

id
string
required
name
string
required
web_url
string
required
@type
string
default:UdemyInstructor
job_title
string | null
bio
string | null
image
string | null
alias
string | null
rating
number | null
student_count
integer | null
review_count
integer | null
course_count
integer | null