example-data.com
Menu
Browse docs and collections

Overview

courses / #55

The Complete Guide to Analytics

instructorUserId
Jacynthe Sawayn @jacynthe_sawayn71
title
The Complete Guide to Analytics
slug
the-complete-guide-to-analytics-55
description
Deputo ambitus adficio abscido temptatio avarus tempus comburo unde aut. Repellat paens curo audax. Beatae causa texo adsidue cupressus color volaticus curriculum pecco.
category
data
difficulty
advanced
language
German
durationHours
10.2
priceFrom
132.61
currency
USD
thumbnailUrl
https://picsum.photos/seed/course-55/800/450
rating
4
ratingCount
1774
enrollmentCount
6006
isPublished
true
createdAt
updatedAt

Component variants

Related

Request

curl example

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

JavaScript example

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

Python example

import requests

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

Response

{
  "id": 55,
  "instructorUserId": 146,
  "title": "The Complete Guide to Analytics",
  "slug": "the-complete-guide-to-analytics-55",
  "description": "Deputo ambitus adficio abscido temptatio avarus tempus comburo unde aut. Repellat paens curo audax. Beatae causa texo adsidue cupressus color volaticus curriculum pecco.",
  "category": "data",
  "difficulty": "advanced",
  "language": "German",
  "durationHours": 10.2,
  "priceFrom": 132.61,
  "currency": "USD",
  "thumbnailUrl": "https://picsum.photos/seed/course-55/800/450",
  "rating": 4,
  "ratingCount": 1774,
  "enrollmentCount": 6006,
  "isPublished": true,
  "createdAt": "2024-06-30T22:58:16.875Z",
  "updatedAt": "2024-08-10T04:59:17.615Z"
}