example-data.com

courses / #79

instructorUserId
16
title
Introduction to Guitar
slug
introduction-to-guitar-79
description
Tabesco tenuis cinis apostolus tabella contego facere charisma. Tepesco comptus allatus tero pel catena asperiores. Claudeo creta laboriosam timor arbustum atqui thorax carpo. Coaegresco voveo cupio cerno defluo armarium vix.
category
music
difficulty
advanced
language
German
durationHours
37.8
priceFrom
136.77
currency
USD
thumbnailUrl
https://picsum.photos/seed/course-79/800/450
rating
3.6
ratingCount
789
enrollmentCount
1450
isPublished
false
createdAt
updatedAt

Component variants

Related

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

res = requests.get(
    "https://example-data.com/api/v1/courses/79"
)
course = res.json()
{
  "id": 79,
  "instructorUserId": 16,
  "title": "Introduction to Guitar",
  "slug": "introduction-to-guitar-79",
  "description": "Tabesco tenuis cinis apostolus tabella contego facere charisma. Tepesco comptus allatus tero pel catena asperiores. Claudeo creta laboriosam timor arbustum atqui thorax carpo. Coaegresco voveo cupio cerno defluo armarium vix.",
  "category": "music",
  "difficulty": "advanced",
  "language": "German",
  "durationHours": 37.8,
  "priceFrom": 136.77,
  "currency": "USD",
  "thumbnailUrl": "https://picsum.photos/seed/course-79/800/450",
  "rating": 3.6,
  "ratingCount": 789,
  "enrollmentCount": 1450,
  "isPublished": false,
  "createdAt": "2025-10-01T22:40:56.410Z",
  "updatedAt": "2025-11-09T22:10:39.731Z"
}
Draftbit