courses / #55
- instructorUserId
- 146
- title
- The Complete Guide to Analytics
- slug
- the-complete-guide-to-analytics-55
- description
- Deputo ambitus adficio abscido temptatio avarus tempus comburo unde aut. Repellat paens curo audax. Beatae causa texo adsidue cupressus color volaticus curriculum pecco.
- category
- data
- difficulty
- advanced
- language
- German
- durationHours
- 10.2
- priceFrom
- 132.61
- currency
- USD
- thumbnailUrl
- https://picsum.photos/seed/course-55/800/450
- rating
- 4
- ratingCount
- 1774
- enrollmentCount
- 6006
- isPublished
- true
- createdAt
- updatedAt
Component variants
Related
Referenced by
curl -sS \
"https://example-data.com/api/v1/courses/55" \
-H "Accept: application/json"const res = await fetch(
"https://example-data.com/api/v1/courses/55"
);
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/55"
);
const course = (await res.json()) as Course;import requests
res = requests.get(
"https://example-data.com/api/v1/courses/55"
)
course = res.json() {
"id": 55,
"instructorUserId": 146,
"title": "The Complete Guide to Analytics",
"slug": "the-complete-guide-to-analytics-55",
"description": "Deputo ambitus adficio abscido temptatio avarus tempus comburo unde aut. Repellat paens curo audax. Beatae causa texo adsidue cupressus color volaticus curriculum pecco.",
"category": "data",
"difficulty": "advanced",
"language": "German",
"durationHours": 10.2,
"priceFrom": 132.61,
"currency": "USD",
"thumbnailUrl": "https://picsum.photos/seed/course-55/800/450",
"rating": 4,
"ratingCount": 1774,
"enrollmentCount": 6006,
"isPublished": true,
"createdAt": "2024-06-30T22:58:16.875Z",
"updatedAt": "2024-08-10T04:59:17.615Z"
}