example-data.com
Menu
Browse docs and collections

Overview

lessons / #522

Practical Best Practices

courseId
courses/77
title
Practical Best Practices
slug
practical-best-practices-c77-3
description
Suasoria blandior clementia porro abutor terror acquiro volo.
content
Aduro voluptatum ulciscor vere aggredior amita. Aggero apparatus substantia aufero confugo vulgaris arbitro vulgivagus suggero. Subvenio talio contra suasoria depulso ater ut. Modi articulus dens quasi valde desipio teres addo urbanus cohibeo. Ducimus inflammatio tergiversatio carcer copiose quo aiunt. Compello adulatio quos deinde super decens coepi error officia.
sortOrder
3
durationMinutes
20
videoUrl
https://example.com/courses/77/lessons/522.mp4
createdAt
updatedAt

Component variants

Related

References

Request

curl example

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

JavaScript example

const res = await fetch(
  "https://example-data.com/api/v1/lessons/522"
);
const lesson = await res.json();

TypeScript example

// Download once: mkdir -p types && curl -o types/lessons.d.ts https://example-data.com/types/lessons.d.ts
import type { Lesson } from "./types/lessons";

const res = await fetch(
  "https://example-data.com/api/v1/lessons/522"
);
const lesson = (await res.json()) as Lesson;

Python example

import requests

res = requests.get(
    "https://example-data.com/api/v1/lessons/522"
)
lesson = res.json()

Response

{
  "id": 522,
  "courseId": 77,
  "title": "Practical Best Practices",
  "slug": "practical-best-practices-c77-3",
  "description": "Suasoria blandior clementia porro abutor terror acquiro volo.",
  "content": "Aduro voluptatum ulciscor vere aggredior amita. Aggero apparatus substantia aufero confugo vulgaris arbitro vulgivagus suggero. Subvenio talio contra suasoria depulso ater ut.\n\nModi articulus dens quasi valde desipio teres addo urbanus cohibeo. Ducimus inflammatio tergiversatio carcer copiose quo aiunt. Compello adulatio quos deinde super decens coepi error officia.",
  "sortOrder": 3,
  "durationMinutes": 20,
  "videoUrl": "https://example.com/courses/77/lessons/522.mp4",
  "createdAt": "2025-08-13T06:59:34.623Z",
  "updatedAt": "2025-09-08T16:35:07.669Z"
}