example-data.com

courses / #51

instructorUserId
106
title
The Complete Guide to Operations
slug
the-complete-guide-to-operations-51
description
Correptius appositus peccatus defluo. Aptus tactus utpote truculenter creta cohors absorbeo ratione verbera. Vestrum statua molestias sursum statim aggero utor adimpleo alioqui.
category
business
difficulty
intermediate
language
German
durationHours
33.8
priceFrom
0
currency
USD
thumbnailUrl
https://picsum.photos/seed/course-51/800/450
rating
4.9
ratingCount
4085
enrollmentCount
6818
isPublished
true
createdAt
updatedAt

Component variants

Related

curl -sS \
  "https://example-data.com/api/v1/courses/51" \
  -H "Accept: application/json"
const res = await fetch(
  "https://example-data.com/api/v1/courses/51"
);
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/51"
);
const course = (await res.json()) as Course;
import requests

res = requests.get(
    "https://example-data.com/api/v1/courses/51"
)
course = res.json()
{
  "id": 51,
  "instructorUserId": 106,
  "title": "The Complete Guide to Operations",
  "slug": "the-complete-guide-to-operations-51",
  "description": "Correptius appositus peccatus defluo. Aptus tactus utpote truculenter creta cohors absorbeo ratione verbera. Vestrum statua molestias sursum statim aggero utor adimpleo alioqui.",
  "category": "business",
  "difficulty": "intermediate",
  "language": "German",
  "durationHours": 33.8,
  "priceFrom": 0,
  "currency": "USD",
  "thumbnailUrl": "https://picsum.photos/seed/course-51/800/450",
  "rating": 4.9,
  "ratingCount": 4085,
  "enrollmentCount": 6818,
  "isPublished": true,
  "createdAt": "2025-06-11T21:02:30.751Z",
  "updatedAt": "2025-08-04T05:46:43.554Z"
}
Draftbit