courses / #23
- instructorUserId
- 92
- title
- Introduction to Content Marketing
- slug
- introduction-to-content-marketing-23
- description
- Comedo dolore culpo aro demulceo denuncio cibo excepturi terebro carus. Sonitus cupressus antiquus adaugeo.
- category
- marketing
- difficulty
- intermediate
- language
- French
- durationHours
- 58.7
- priceFrom
- 17.37
- currency
- USD
- thumbnailUrl
- https://picsum.photos/seed/course-23/800/450
- rating
- 3.4
- ratingCount
- 2439
- enrollmentCount
- 9658
- isPublished
- false
- createdAt
- updatedAt
Component variants
Related
Referenced by
curl -sS \
"https://example-data.com/api/v1/courses/23" \
-H "Accept: application/json"const res = await fetch(
"https://example-data.com/api/v1/courses/23"
);
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/23"
);
const course = (await res.json()) as Course;import requests
res = requests.get(
"https://example-data.com/api/v1/courses/23"
)
course = res.json() {
"id": 23,
"instructorUserId": 92,
"title": "Introduction to Content Marketing",
"slug": "introduction-to-content-marketing-23",
"description": "Comedo dolore culpo aro demulceo denuncio cibo excepturi terebro carus. Sonitus cupressus antiquus adaugeo.",
"category": "marketing",
"difficulty": "intermediate",
"language": "French",
"durationHours": 58.7,
"priceFrom": 17.37,
"currency": "USD",
"thumbnailUrl": "https://picsum.photos/seed/course-23/800/450",
"rating": 3.4,
"ratingCount": 2439,
"enrollmentCount": 9658,
"isPublished": false,
"createdAt": "2024-08-04T15:38:49.049Z",
"updatedAt": "2024-10-21T16:38:51.422Z"
}