courses / #61
- instructorUserId
- 206
- title
- Hands-On Negotiation
- slug
- hands-on-negotiation-61
- description
- Decor cupressus voluptate numquam alter contigo cado. Rerum sui tamdiu cauda. Tabgo unde cibus urbs cibo cibus. Super dignissimos suppellex capitulus.
- category
- business
- difficulty
- beginner
- language
- German
- durationHours
- 25.9
- priceFrom
- 0
- currency
- USD
- thumbnailUrl
- https://picsum.photos/seed/course-61/800/450
- rating
- 4.5
- ratingCount
- 4285
- enrollmentCount
- 7948
- isPublished
- true
- createdAt
- updatedAt
Component variants
Related
Referenced by
curl -sS \
"https://example-data.com/api/v1/courses/61" \
-H "Accept: application/json"const res = await fetch(
"https://example-data.com/api/v1/courses/61"
);
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/61"
);
const course = (await res.json()) as Course;import requests
res = requests.get(
"https://example-data.com/api/v1/courses/61"
)
course = res.json() {
"id": 61,
"instructorUserId": 206,
"title": "Hands-On Negotiation",
"slug": "hands-on-negotiation-61",
"description": "Decor cupressus voluptate numquam alter contigo cado. Rerum sui tamdiu cauda. Tabgo unde cibus urbs cibo cibus. Super dignissimos suppellex capitulus.",
"category": "business",
"difficulty": "beginner",
"language": "German",
"durationHours": 25.9,
"priceFrom": 0,
"currency": "USD",
"thumbnailUrl": "https://picsum.photos/seed/course-61/800/450",
"rating": 4.5,
"ratingCount": 4285,
"enrollmentCount": 7948,
"isPublished": true,
"createdAt": "2025-11-08T18:53:44.518Z",
"updatedAt": "2025-12-21T23:32:15.791Z"
}