courses / #30
- instructorUserId
- 31
- title
- Modern UX Research
- slug
- modern-ux-research-30
- description
- Auditor cura solum soluta patruus magnam aetas sono substantia sulum. Mollitia vociferor arto eos somnus combibo coma. Fugit peior tempore subvenio.
- category
- design
- difficulty
- beginner
- language
- Japanese
- durationHours
- 40.4
- priceFrom
- 188.95
- currency
- USD
- thumbnailUrl
- https://picsum.photos/seed/course-30/800/450
- rating
- 3.1
- ratingCount
- 4371
- enrollmentCount
- 16743
- isPublished
- true
- createdAt
- updatedAt
Component variants
Related
Referenced by
curl -sS \
"https://example-data.com/api/v1/courses/30" \
-H "Accept: application/json"const res = await fetch(
"https://example-data.com/api/v1/courses/30"
);
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/30"
);
const course = (await res.json()) as Course;import requests
res = requests.get(
"https://example-data.com/api/v1/courses/30"
)
course = res.json() {
"id": 30,
"instructorUserId": 31,
"title": "Modern UX Research",
"slug": "modern-ux-research-30",
"description": "Auditor cura solum soluta patruus magnam aetas sono substantia sulum. Mollitia vociferor arto eos somnus combibo coma. Fugit peior tempore subvenio.",
"category": "design",
"difficulty": "beginner",
"language": "Japanese",
"durationHours": 40.4,
"priceFrom": 188.95,
"currency": "USD",
"thumbnailUrl": "https://picsum.photos/seed/course-30/800/450",
"rating": 3.1,
"ratingCount": 4371,
"enrollmentCount": 16743,
"isPublished": true,
"createdAt": "2025-07-09T14:12:20.003Z",
"updatedAt": "2025-08-20T02:43:07.520Z"
}