courses / #46
- instructorUserId
- 6
- title
- Practical React
- slug
- practical-react-46
- description
- Contego curia amaritudo synagoga voluptatem fugiat adeo. Vigilo vomer tonsor.
- category
- programming
- difficulty
- intermediate
- language
- Spanish
- durationHours
- 57.9
- priceFrom
- 102.42
- currency
- USD
- thumbnailUrl
- https://picsum.photos/seed/course-46/800/450
- rating
- 4.5
- ratingCount
- 3901
- enrollmentCount
- 8742
- isPublished
- true
- createdAt
- updatedAt
Component variants
Related
Referenced by
curl -sS \
"https://example-data.com/api/v1/courses/46" \
-H "Accept: application/json"const res = await fetch(
"https://example-data.com/api/v1/courses/46"
);
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/46"
);
const course = (await res.json()) as Course;import requests
res = requests.get(
"https://example-data.com/api/v1/courses/46"
)
course = res.json() {
"id": 46,
"instructorUserId": 6,
"title": "Practical React",
"slug": "practical-react-46",
"description": "Contego curia amaritudo synagoga voluptatem fugiat adeo. Vigilo vomer tonsor.",
"category": "programming",
"difficulty": "intermediate",
"language": "Spanish",
"durationHours": 57.9,
"priceFrom": 102.42,
"currency": "USD",
"thumbnailUrl": "https://picsum.photos/seed/course-46/800/450",
"rating": 4.5,
"ratingCount": 3901,
"enrollmentCount": 8742,
"isPublished": true,
"createdAt": "2026-02-19T01:54:56.501Z",
"updatedAt": "2026-03-10T18:01:54.805Z"
}