example-data.com
Menu
Browse docs and collections

Overview

courses / #26

Hands-On SQL

instructorUserId
Kamryn Rogahn @kamryn_rogahn40
title
Hands-On SQL
slug
hands-on-sql-26
description
Video arca abutor. Volva sustineo abduco suppono cenaculum cum tactus animus thorax quasi. Tamisium censura molestiae trepide bibo. Trado traho pel culpo sollers vestrum allatus callide.
category
data
difficulty
intermediate
language
Portuguese
durationHours
31.9
priceFrom
0
currency
USD
thumbnailUrl
https://picsum.photos/seed/course-26/800/450
rating
3.7
ratingCount
641
enrollmentCount
2408
isPublished
true
createdAt
updatedAt

Component variants

Related

Request

curl example

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

JavaScript example

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

Python example

import requests

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

Response

{
  "id": 26,
  "instructorUserId": 170,
  "title": "Hands-On SQL",
  "slug": "hands-on-sql-26",
  "description": "Video arca abutor. Volva sustineo abduco suppono cenaculum cum tactus animus thorax quasi. Tamisium censura molestiae trepide bibo. Trado traho pel culpo sollers vestrum allatus callide.",
  "category": "data",
  "difficulty": "intermediate",
  "language": "Portuguese",
  "durationHours": 31.9,
  "priceFrom": 0,
  "currency": "USD",
  "thumbnailUrl": "https://picsum.photos/seed/course-26/800/450",
  "rating": 3.7,
  "ratingCount": 641,
  "enrollmentCount": 2408,
  "isPublished": true,
  "createdAt": "2024-12-21T05:44:54.060Z",
  "updatedAt": "2025-01-04T03:48:14.875Z"
}