courses / #33
- instructorUserId
- 139
- title
- Hands-On Growth Hacking
- slug
- hands-on-growth-hacking-33
- description
- Carpo auctor dicta. Vomica sol varius speciosus. Cresco depopulo tabella ancilla confido defetiscor sopor amor. Depraedor vinculum vulticulus vulgivagus crinis.
- category
- marketing
- difficulty
- beginner
- language
- Spanish
- durationHours
- 39.1
- priceFrom
- 0
- currency
- USD
- thumbnailUrl
- https://picsum.photos/seed/course-33/800/450
- rating
- 4.1
- ratingCount
- 1063
- enrollmentCount
- 4719
- isPublished
- true
- createdAt
- updatedAt
Component variants
Related
Referenced by
curl -sS \
"https://example-data.com/api/v1/courses/33" \
-H "Accept: application/json"const res = await fetch(
"https://example-data.com/api/v1/courses/33"
);
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/33"
);
const course = (await res.json()) as Course;import requests
res = requests.get(
"https://example-data.com/api/v1/courses/33"
)
course = res.json() {
"id": 33,
"instructorUserId": 139,
"title": "Hands-On Growth Hacking",
"slug": "hands-on-growth-hacking-33",
"description": "Carpo auctor dicta. Vomica sol varius speciosus. Cresco depopulo tabella ancilla confido defetiscor sopor amor. Depraedor vinculum vulticulus vulgivagus crinis.",
"category": "marketing",
"difficulty": "beginner",
"language": "Spanish",
"durationHours": 39.1,
"priceFrom": 0,
"currency": "USD",
"thumbnailUrl": "https://picsum.photos/seed/course-33/800/450",
"rating": 4.1,
"ratingCount": 1063,
"enrollmentCount": 4719,
"isPublished": true,
"createdAt": "2025-09-10T00:05:40.606Z",
"updatedAt": "2025-11-24T00:17:19.561Z"
}