example-data.com
Menu
Browse docs and collections

Overview

courses / #51

The Complete Guide to Operations

instructorUserId
Allan Buckridge @allan_buckridge
title
The Complete Guide to Operations
slug
the-complete-guide-to-operations-51
description
Correptius appositus peccatus defluo. Aptus tactus utpote truculenter creta cohors absorbeo ratione verbera. Vestrum statua molestias sursum statim aggero utor adimpleo alioqui.
category
business
difficulty
intermediate
language
German
durationHours
33.8
priceFrom
0
currency
USD
thumbnailUrl
https://picsum.photos/seed/course-51/800/450
rating
4.9
ratingCount
4085
enrollmentCount
6818
isPublished
true
createdAt
updatedAt

Component variants

Related

Request

curl example

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

JavaScript example

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

Python example

import requests

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

Response

{
  "id": 51,
  "instructorUserId": 106,
  "title": "The Complete Guide to Operations",
  "slug": "the-complete-guide-to-operations-51",
  "description": "Correptius appositus peccatus defluo. Aptus tactus utpote truculenter creta cohors absorbeo ratione verbera. Vestrum statua molestias sursum statim aggero utor adimpleo alioqui.",
  "category": "business",
  "difficulty": "intermediate",
  "language": "German",
  "durationHours": 33.8,
  "priceFrom": 0,
  "currency": "USD",
  "thumbnailUrl": "https://picsum.photos/seed/course-51/800/450",
  "rating": 4.9,
  "ratingCount": 4085,
  "enrollmentCount": 6818,
  "isPublished": true,
  "createdAt": "2025-06-11T21:02:30.751Z",
  "updatedAt": "2025-08-04T05:46:43.554Z"
}