example-data.com
Menu
Browse docs and collections

Overview

courses / #36

The Complete Guide to Design Systems

instructorUserId
Hortense Cruickshank @hortense.cruickshank65
title
The Complete Guide to Design Systems
slug
the-complete-guide-to-design-systems-36
description
Suffragium terebro tutamen. Absconditus cometes aeger atque apto amissio. Qui verumtamen deludo dapifer officia suscipit eaque coruscus possimus. Demitto comprehendo vesco aeger auditor socius.
category
design
difficulty
intermediate
language
Spanish
durationHours
30.9
priceFrom
80.17
currency
USD
thumbnailUrl
https://picsum.photos/seed/course-36/800/450
rating
4.7
ratingCount
4500
enrollmentCount
8158
isPublished
false
createdAt
updatedAt

Component variants

Related

Request

curl example

curl -sS \
  "https://example-data.com/api/v1/courses/36" \
  -H "Accept: application/json"

JavaScript example

const res = await fetch(
  "https://example-data.com/api/v1/courses/36"
);
const course = await res.json();

TypeScript example

// Download once: mkdir -p types && curl -o types/courses.d.ts https://example-data.com/types/courses.d.ts
import type { Course } from "./types/courses";

const res = await fetch(
  "https://example-data.com/api/v1/courses/36"
);
const course = (await res.json()) as Course;

Python example

import requests

res = requests.get(
    "https://example-data.com/api/v1/courses/36"
)
course = res.json()

Response

{
  "id": 36,
  "instructorUserId": 83,
  "title": "The Complete Guide to Design Systems",
  "slug": "the-complete-guide-to-design-systems-36",
  "description": "Suffragium terebro tutamen. Absconditus cometes aeger atque apto amissio. Qui verumtamen deludo dapifer officia suscipit eaque coruscus possimus. Demitto comprehendo vesco aeger auditor socius.",
  "category": "design",
  "difficulty": "intermediate",
  "language": "Spanish",
  "durationHours": 30.9,
  "priceFrom": 80.17,
  "currency": "USD",
  "thumbnailUrl": "https://picsum.photos/seed/course-36/800/450",
  "rating": 4.7,
  "ratingCount": 4500,
  "enrollmentCount": 8158,
  "isPublished": false,
  "createdAt": "2025-10-29T03:51:32.540Z",
  "updatedAt": "2025-12-08T11:22:11.256Z"
}