Skip to main content

Get All Courses

Retrieve all courses with detailed statistics including enrollments, revenue, and educator information.

Authentication

Authorization
string
required
Bearer token with admin role required

Response

success
boolean
Indicates if the request was successful
courses
array
Array of courses sorted by creation date (newest first)
{
  "success": true,
  "courses": [
    {
      "_id": "65a1b2c3d4e5f6789abcdef0",
      "courseTitle": "Complete Web Development Bootcamp 2024",
      "educatorId": {
        "_id": "user_2abc123def456",
        "name": "John Smith",
        "email": "john.smith@example.com"
      },
      "enrolledCount": 342,
      "isPublished": true,
      "coursePrice": 4999,
      "discount": 20,
      "createdAt": "2024-01-12T10:30:00.000Z",
      "revenue": 1367592,
      "purchases": 342
    },
    {
      "_id": "65a1b2c3d4e5f6789abcdef1",
      "courseTitle": "JavaScript Mastery: From Zero to Hero",
      "educatorId": {
        "_id": "user_3xyz789ghi012",
        "name": "Sarah Johnson",
        "email": "sarah.j@example.com"
      },
      "enrolledCount": 287,
      "isPublished": true,
      "coursePrice": 3499,
      "discount": 15,
      "createdAt": "2024-01-10T14:20:00.000Z",
      "revenue": 854213,
      "purchases": 287
    },
    {
      "_id": "65a1b2c3d4e5f6789abcdef2",
      "courseTitle": "Advanced React Patterns (Draft)",
      "educatorId": {
        "_id": "user_4mno345pqr678",
        "name": "Michael Chen",
        "email": "m.chen@example.com"
      },
      "enrolledCount": 0,
      "isPublished": false,
      "coursePrice": 5999,
      "discount": 0,
      "createdAt": "2024-01-08T09:15:00.000Z",
      "revenue": 0,
      "purchases": 0
    }
  ]
}

Notes

  • Courses are sorted by creation date in descending order (newest first)
  • Revenue and purchase counts only include completed purchases
  • Unpublished courses will have 0 enrollments and revenue
  • The enrolledCount may differ from purchases if some students enrolled through other means (e.g., free access, promotions)
  • Prices are in the platform’s base currency (INR by default)