example-data.com
Menu
Browse docs and collections

Overview

courses / #30

Modern UX Research

instructorUserId
Izaiah Rempel @izaiah_rempel
title
Modern UX Research
slug
modern-ux-research-30
description
Auditor cura solum soluta patruus magnam aetas sono substantia sulum. Mollitia vociferor arto eos somnus combibo coma. Fugit peior tempore subvenio.
category
design
difficulty
beginner
language
Japanese
durationHours
40.4
priceFrom
188.95
currency
USD
thumbnailUrl
https://picsum.photos/seed/course-30/800/450
rating
3.1
ratingCount
4371
enrollmentCount
16743
isPublished
true
createdAt
updatedAt

Component variants

Related

Request

curl example

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

JavaScript example

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

Python example

import requests

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

Response

{
  "id": 30,
  "instructorUserId": 31,
  "title": "Modern UX Research",
  "slug": "modern-ux-research-30",
  "description": "Auditor cura solum soluta patruus magnam aetas sono substantia sulum. Mollitia vociferor arto eos somnus combibo coma. Fugit peior tempore subvenio.",
  "category": "design",
  "difficulty": "beginner",
  "language": "Japanese",
  "durationHours": 40.4,
  "priceFrom": 188.95,
  "currency": "USD",
  "thumbnailUrl": "https://picsum.photos/seed/course-30/800/450",
  "rating": 3.1,
  "ratingCount": 4371,
  "enrollmentCount": 16743,
  "isPublished": true,
  "createdAt": "2025-07-09T14:12:20.003Z",
  "updatedAt": "2025-08-20T02:43:07.520Z"
}