Skip to content

CourseStudent

Bakhtarian edited this page May 14, 2026 · 1 revision

Course Student

A course student represents a member enrolled in a Whop course, tracking their overall progress through it. This resource is read-only.

SDK access

$client->courseStudents // Matchable\Whop\Resource\CourseStudentResource

Endpoints

list(array $query = []): array

HTTP GET course-students
Does Lists course students.
Parameters $query — optional filters / pagination (e.g. by course or user).
Returns array

get(string $id): array

HTTP GET course-students/{id}
Does Retrieves a single course student by ID.
Parameters $id — the course student ID.
Returns array

Note: this resource is read-only — enrollment is driven by membership access, not by direct create/update/delete calls.

Example

$students = $client->courseStudents->list(['course_id' => 'course_...']);

Reference

Official Whop documentation: https://docs.whop.com

Clone this wiki locally