example-data.com

courses / #5

instructorUserId
118
title
Essential Storytelling
slug
essential-storytelling-5
description
Alii ustulo vicinus terror crudelis supra. Abbas terreo taceo viduo dolorum soluta sordeo.
category
writing
difficulty
beginner
language
Portuguese
durationHours
17.2
priceFrom
178.17
currency
USD
thumbnailUrl
https://picsum.photos/seed/course-5/800/450
rating
3.7
ratingCount
1602
enrollmentCount
3577
isPublished
false
createdAt
updatedAt

Component variants

Related

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

res = requests.get(
    "https://example-data.com/api/v1/courses/5"
)
course = res.json()
{
  "id": 5,
  "instructorUserId": 118,
  "title": "Essential Storytelling",
  "slug": "essential-storytelling-5",
  "description": "Alii ustulo vicinus terror crudelis supra. Abbas terreo taceo viduo dolorum soluta sordeo.",
  "category": "writing",
  "difficulty": "beginner",
  "language": "Portuguese",
  "durationHours": 17.2,
  "priceFrom": 178.17,
  "currency": "USD",
  "thumbnailUrl": "https://picsum.photos/seed/course-5/800/450",
  "rating": 3.7,
  "ratingCount": 1602,
  "enrollmentCount": 3577,
  "isPublished": false,
  "createdAt": "2025-06-17T02:00:33.519Z",
  "updatedAt": "2025-09-07T16:24:47.529Z"
}
Draftbit