example-data.com
Menu
Browse docs and collections

Overview

courses / #14

Building with Lighting

instructorUserId
Ethyl Auer @ethyl_auer89
title
Building with Lighting
slug
building-with-lighting-14
description
Talio certe amo concedo. Vulgo tergiversatio fugit amplitudo ustilo corona virga ciminatio colligo perferendis. Adipisci nulla deleniti. Culpo tendo ars aperte aegrus damnatio explicabo vester cito illum.
category
photography
difficulty
beginner
language
German
durationHours
44.2
priceFrom
184.56
currency
USD
thumbnailUrl
https://picsum.photos/seed/course-14/800/450
rating
4.2
ratingCount
1532
enrollmentCount
5128
isPublished
true
createdAt
updatedAt

Component variants

Related

Request

curl example

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

JavaScript example

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

Python example

import requests

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

Response

{
  "id": 14,
  "instructorUserId": 95,
  "title": "Building with Lighting",
  "slug": "building-with-lighting-14",
  "description": "Talio certe amo concedo. Vulgo tergiversatio fugit amplitudo ustilo corona virga ciminatio colligo perferendis. Adipisci nulla deleniti. Culpo tendo ars aperte aegrus damnatio explicabo vester cito illum.",
  "category": "photography",
  "difficulty": "beginner",
  "language": "German",
  "durationHours": 44.2,
  "priceFrom": 184.56,
  "currency": "USD",
  "thumbnailUrl": "https://picsum.photos/seed/course-14/800/450",
  "rating": 4.2,
  "ratingCount": 1532,
  "enrollmentCount": 5128,
  "isPublished": true,
  "createdAt": "2025-04-11T22:29:43.344Z",
  "updatedAt": "2025-06-29T19:49:33.556Z"
}