example-data.com
Menu
Browse docs and collections

Overview

courses / #74

Fundamentals of Data Visualization

instructorUserId
Oran Torphy @oran_torphy
title
Fundamentals of Data Visualization
slug
fundamentals-of-data-visualization-74
description
Officiis cohaero acsi aqua desparatus ventito ustulo tero alo trucido. Nihil curo patior patior tabesco tergiversatio deserunt absorbeo.
category
data
difficulty
advanced
language
English
durationHours
15.7
priceFrom
41.13
currency
USD
thumbnailUrl
https://picsum.photos/seed/course-74/800/450
rating
4.4
ratingCount
2928
enrollmentCount
9466
isPublished
true
createdAt
updatedAt

Component variants

Related

Request

curl example

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

JavaScript example

const res = await fetch(
  "https://example-data.com/api/v1/courses/74"
);
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/74"
);
const course = (await res.json()) as Course;

Python example

import requests

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

Response

{
  "id": 74,
  "instructorUserId": 189,
  "title": "Fundamentals of Data Visualization",
  "slug": "fundamentals-of-data-visualization-74",
  "description": "Officiis cohaero acsi aqua desparatus ventito ustulo tero alo trucido. Nihil curo patior patior tabesco tergiversatio deserunt absorbeo.",
  "category": "data",
  "difficulty": "advanced",
  "language": "English",
  "durationHours": 15.7,
  "priceFrom": 41.13,
  "currency": "USD",
  "thumbnailUrl": "https://picsum.photos/seed/course-74/800/450",
  "rating": 4.4,
  "ratingCount": 2928,
  "enrollmentCount": 9466,
  "isPublished": true,
  "createdAt": "2025-03-13T16:17:34.510Z",
  "updatedAt": "2025-03-17T08:05:24.519Z"
}