courses / #58
- instructorUserId
- 104
- title
- Hands-On Operations
- slug
- hands-on-operations-58
- description
- Usus delicate commodi vigor suggero. Inventore ait adficio cena statua magni. Cado amor vapulus decet cernuus acies.
- category
- business
- difficulty
- intermediate
- language
- English
- durationHours
- 45.4
- priceFrom
- 31.79
- currency
- USD
- thumbnailUrl
- https://picsum.photos/seed/course-58/800/450
- rating
- 4
- ratingCount
- 4996
- enrollmentCount
- 15203
- isPublished
- true
- createdAt
- updatedAt
Component variants
Related
Referenced by
curl -sS \
"https://example-data.com/api/v1/courses/58" \
-H "Accept: application/json"const res = await fetch(
"https://example-data.com/api/v1/courses/58"
);
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/58"
);
const course = (await res.json()) as Course;import requests
res = requests.get(
"https://example-data.com/api/v1/courses/58"
)
course = res.json() {
"id": 58,
"instructorUserId": 104,
"title": "Hands-On Operations",
"slug": "hands-on-operations-58",
"description": "Usus delicate commodi vigor suggero. Inventore ait adficio cena statua magni. Cado amor vapulus decet cernuus acies.",
"category": "business",
"difficulty": "intermediate",
"language": "English",
"durationHours": 45.4,
"priceFrom": 31.79,
"currency": "USD",
"thumbnailUrl": "https://picsum.photos/seed/course-58/800/450",
"rating": 4,
"ratingCount": 4996,
"enrollmentCount": 15203,
"isPublished": true,
"createdAt": "2025-01-02T15:32:25.427Z",
"updatedAt": "2025-01-24T02:51:09.439Z"
}