courses / #26
- instructorUserId
- 170
- title
- Hands-On SQL
- slug
- hands-on-sql-26
- description
- Video arca abutor. Volva sustineo abduco suppono cenaculum cum tactus animus thorax quasi. Tamisium censura molestiae trepide bibo. Trado traho pel culpo sollers vestrum allatus callide.
- category
- data
- difficulty
- intermediate
- language
- Portuguese
- durationHours
- 31.9
- priceFrom
- 0
- currency
- USD
- thumbnailUrl
- https://picsum.photos/seed/course-26/800/450
- rating
- 3.7
- ratingCount
- 641
- enrollmentCount
- 2408
- isPublished
- true
- createdAt
- updatedAt
Component variants
Related
Referenced by
curl -sS \
"https://example-data.com/api/v1/courses/26" \
-H "Accept: application/json"const res = await fetch(
"https://example-data.com/api/v1/courses/26"
);
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/26"
);
const course = (await res.json()) as Course;import requests
res = requests.get(
"https://example-data.com/api/v1/courses/26"
)
course = res.json() {
"id": 26,
"instructorUserId": 170,
"title": "Hands-On SQL",
"slug": "hands-on-sql-26",
"description": "Video arca abutor. Volva sustineo abduco suppono cenaculum cum tactus animus thorax quasi. Tamisium censura molestiae trepide bibo. Trado traho pel culpo sollers vestrum allatus callide.",
"category": "data",
"difficulty": "intermediate",
"language": "Portuguese",
"durationHours": 31.9,
"priceFrom": 0,
"currency": "USD",
"thumbnailUrl": "https://picsum.photos/seed/course-26/800/450",
"rating": 3.7,
"ratingCount": 641,
"enrollmentCount": 2408,
"isPublished": true,
"createdAt": "2024-12-21T05:44:54.060Z",
"updatedAt": "2025-01-04T03:48:14.875Z"
}