example-data.com
Menu
Browse docs and collections

Overview

courses / #58

Hands-On Operations

instructorUserId
Jermain Kshlerin @jermain_kshlerin51
title
Hands-On Operations
slug
hands-on-operations-58
description
Usus delicate commodi vigor suggero. Inventore ait adficio cena statua magni. Cado amor vapulus decet cernuus acies.
category
business
difficulty
intermediate
language
English
durationHours
45.4
priceFrom
31.79
currency
USD
thumbnailUrl
https://picsum.photos/seed/course-58/800/450
rating
4
ratingCount
4996
enrollmentCount
15203
isPublished
true
createdAt
updatedAt

Component variants

Related

Request

curl example

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

JavaScript example

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

Python example

import requests

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

Response

{
  "id": 58,
  "instructorUserId": 104,
  "title": "Hands-On Operations",
  "slug": "hands-on-operations-58",
  "description": "Usus delicate commodi vigor suggero. Inventore ait adficio cena statua magni. Cado amor vapulus decet cernuus acies.",
  "category": "business",
  "difficulty": "intermediate",
  "language": "English",
  "durationHours": 45.4,
  "priceFrom": 31.79,
  "currency": "USD",
  "thumbnailUrl": "https://picsum.photos/seed/course-58/800/450",
  "rating": 4,
  "ratingCount": 4996,
  "enrollmentCount": 15203,
  "isPublished": true,
  "createdAt": "2025-01-02T15:32:25.427Z",
  "updatedAt": "2025-01-24T02:51:09.439Z"
}