courses / #13
- instructorUserId
- 199
- title
- The Complete Guide to Piano
- slug
- the-complete-guide-to-piano-13
- description
- Aduro sint tamquam turba audax modi tergeo balbus. Tamdiu dignissimos damnatio adsidue.
- category
- music
- difficulty
- intermediate
- language
- Spanish
- durationHours
- 22.1
- priceFrom
- 176.81
- currency
- USD
- thumbnailUrl
- https://picsum.photos/seed/course-13/800/450
- rating
- 3
- ratingCount
- 4740
- enrollmentCount
- 5126
- isPublished
- true
- createdAt
- updatedAt
Component variants
Related
Referenced by
curl -sS \
"https://example-data.com/api/v1/courses/13" \
-H "Accept: application/json"const res = await fetch(
"https://example-data.com/api/v1/courses/13"
);
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/13"
);
const course = (await res.json()) as Course;import requests
res = requests.get(
"https://example-data.com/api/v1/courses/13"
)
course = res.json() {
"id": 13,
"instructorUserId": 199,
"title": "The Complete Guide to Piano",
"slug": "the-complete-guide-to-piano-13",
"description": "Aduro sint tamquam turba audax modi tergeo balbus. Tamdiu dignissimos damnatio adsidue.",
"category": "music",
"difficulty": "intermediate",
"language": "Spanish",
"durationHours": 22.1,
"priceFrom": 176.81,
"currency": "USD",
"thumbnailUrl": "https://picsum.photos/seed/course-13/800/450",
"rating": 3,
"ratingCount": 4740,
"enrollmentCount": 5126,
"isPublished": true,
"createdAt": "2026-01-14T11:16:29.618Z",
"updatedAt": "2026-03-11T10:46:05.536Z"
}