courses / #74
- instructorUserId
- 189
- title
- Fundamentals of Data Visualization
- slug
- fundamentals-of-data-visualization-74
- description
- Officiis cohaero acsi aqua desparatus ventito ustulo tero alo trucido. Nihil curo patior patior tabesco tergiversatio deserunt absorbeo.
- category
- data
- difficulty
- advanced
- language
- English
- durationHours
- 15.7
- priceFrom
- 41.13
- currency
- USD
- thumbnailUrl
- https://picsum.photos/seed/course-74/800/450
- rating
- 4.4
- ratingCount
- 2928
- enrollmentCount
- 9466
- isPublished
- true
- createdAt
- updatedAt
Component variants
Related
Referenced by
curl -sS \
"https://example-data.com/api/v1/courses/74" \
-H "Accept: application/json"const res = await fetch(
"https://example-data.com/api/v1/courses/74"
);
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/74"
);
const course = (await res.json()) as Course;import requests
res = requests.get(
"https://example-data.com/api/v1/courses/74"
)
course = res.json() {
"id": 74,
"instructorUserId": 189,
"title": "Fundamentals of Data Visualization",
"slug": "fundamentals-of-data-visualization-74",
"description": "Officiis cohaero acsi aqua desparatus ventito ustulo tero alo trucido. Nihil curo patior patior tabesco tergiversatio deserunt absorbeo.",
"category": "data",
"difficulty": "advanced",
"language": "English",
"durationHours": 15.7,
"priceFrom": 41.13,
"currency": "USD",
"thumbnailUrl": "https://picsum.photos/seed/course-74/800/450",
"rating": 4.4,
"ratingCount": 2928,
"enrollmentCount": 9466,
"isPublished": true,
"createdAt": "2025-03-13T16:17:34.510Z",
"updatedAt": "2025-03-17T08:05:24.519Z"
}