courses / #9
- instructorUserId
- 127
- title
- Essential Leadership
- slug
- essential-leadership-9
- description
- Cimentarius alo advoco utpote valens ceno conspergo tollo templum. Curia cauda velociter velit tertius.
- category
- business
- difficulty
- beginner
- language
- Portuguese
- durationHours
- 39.9
- priceFrom
- 27.94
- currency
- USD
- thumbnailUrl
- https://picsum.photos/seed/course-9/800/450
- rating
- 4.2
- ratingCount
- 4523
- enrollmentCount
- 16882
- isPublished
- true
- createdAt
- updatedAt
Component variants
Related
Referenced by
curl -sS \
"https://example-data.com/api/v1/courses/9" \
-H "Accept: application/json"const res = await fetch(
"https://example-data.com/api/v1/courses/9"
);
const course = await res.json();import type { Course } from "https://example-data.com/types/courses.d.ts";
const res = await fetch(
"https://example-data.com/api/v1/courses/9"
);
const course = (await res.json()) as Course;import requests
res = requests.get(
"https://example-data.com/api/v1/courses/9"
)
course = res.json() {
"id": 9,
"instructorUserId": 127,
"title": "Essential Leadership",
"slug": "essential-leadership-9",
"description": "Cimentarius alo advoco utpote valens ceno conspergo tollo templum. Curia cauda velociter velit tertius.",
"category": "business",
"difficulty": "beginner",
"language": "Portuguese",
"durationHours": 39.9,
"priceFrom": 27.94,
"currency": "USD",
"thumbnailUrl": "https://picsum.photos/seed/course-9/800/450",
"rating": 4.2,
"ratingCount": 4523,
"enrollmentCount": 16882,
"isPublished": true,
"createdAt": "2025-02-11T13:20:22.984Z",
"updatedAt": "2025-03-16T09:34:21.338Z"
}