courses / #48
- instructorUserId
- 102
- title
- Building with Negotiation
- slug
- building-with-negotiation-48
- description
- Candidus mollitia tactus. Aufero corrigo ait. Umquam tantum arma. Territo arma titulus suffoco rem.
- category
- business
- difficulty
- intermediate
- language
- Japanese
- durationHours
- 18.1
- priceFrom
- 0
- currency
- USD
- thumbnailUrl
- https://picsum.photos/seed/course-48/800/450
- rating
- 4.5
- ratingCount
- 3626
- enrollmentCount
- 18102
- isPublished
- true
- createdAt
- updatedAt
Component variants
Related
Referenced by
curl -sS \
"https://example-data.com/api/v1/courses/48" \
-H "Accept: application/json"const res = await fetch(
"https://example-data.com/api/v1/courses/48"
);
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/48"
);
const course = (await res.json()) as Course;import requests
res = requests.get(
"https://example-data.com/api/v1/courses/48"
)
course = res.json() {
"id": 48,
"instructorUserId": 102,
"title": "Building with Negotiation",
"slug": "building-with-negotiation-48",
"description": "Candidus mollitia tactus. Aufero corrigo ait. Umquam tantum arma. Territo arma titulus suffoco rem.",
"category": "business",
"difficulty": "intermediate",
"language": "Japanese",
"durationHours": 18.1,
"priceFrom": 0,
"currency": "USD",
"thumbnailUrl": "https://picsum.photos/seed/course-48/800/450",
"rating": 4.5,
"ratingCount": 3626,
"enrollmentCount": 18102,
"isPublished": true,
"createdAt": "2025-09-08T04:41:53.875Z",
"updatedAt": "2025-11-08T01:07:45.484Z"
}