example-data.com
Menu
Browse docs and collections

Overview

courses / #57

Introduction to Operations

instructorUserId
Norbert Jacobi @norbert_jacobi92
title
Introduction to Operations
slug
introduction-to-operations-57
description
Benigne capto arguo villa. Creo comprehendo benigne aestivus recusandae. Cupiditate ara textilis solio verumtamen thalassinus capio deporto eos defluo. Cohors adinventitias vallum vaco temeritas.
category
business
difficulty
beginner
language
Japanese
durationHours
2.9
priceFrom
0
currency
USD
thumbnailUrl
https://picsum.photos/seed/course-57/800/450
rating
4.7
ratingCount
3642
enrollmentCount
9970
isPublished
true
createdAt
updatedAt

Component variants

Related

Request

curl example

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

JavaScript example

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

Python example

import requests

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

Response

{
  "id": 57,
  "instructorUserId": 101,
  "title": "Introduction to Operations",
  "slug": "introduction-to-operations-57",
  "description": "Benigne capto arguo villa. Creo comprehendo benigne aestivus recusandae. Cupiditate ara textilis solio verumtamen thalassinus capio deporto eos defluo. Cohors adinventitias vallum vaco temeritas.",
  "category": "business",
  "difficulty": "beginner",
  "language": "Japanese",
  "durationHours": 2.9,
  "priceFrom": 0,
  "currency": "USD",
  "thumbnailUrl": "https://picsum.photos/seed/course-57/800/450",
  "rating": 4.7,
  "ratingCount": 3642,
  "enrollmentCount": 9970,
  "isPublished": true,
  "createdAt": "2025-11-12T01:24:13.223Z",
  "updatedAt": "2025-11-30T15:29:06.074Z"
}