example-data.com
Menu
Browse docs and collections

Overview

projects / #83

Dashboard Overhaul

orgId
Gleason - Kertzmann
teamId
name
Dashboard Overhaul
slug
gleason-kertzmann-dashboard-overhaul
description
Quibusdam aegrus cribro defungo verecundia tactus.
status
planning
startDate
2025-10-31
dueDate
2026-10-15
ownerUserId
Aaron Fritsch @aaron.fritsch
createdAt
updatedAt

Component variants

Related

Request

curl example

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

JavaScript example

const res = await fetch(
  "https://example-data.com/api/v1/projects/83"
);
const project = await res.json();

TypeScript example

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

const res = await fetch(
  "https://example-data.com/api/v1/projects/83"
);
const project = (await res.json()) as Project;

Python example

import requests

res = requests.get(
    "https://example-data.com/api/v1/projects/83"
)
project = res.json()

Response

{
  "id": 83,
  "orgId": 30,
  "teamId": null,
  "name": "Dashboard Overhaul",
  "slug": "gleason-kertzmann-dashboard-overhaul",
  "description": "Quibusdam aegrus cribro defungo verecundia tactus.",
  "status": "planning",
  "startDate": "2025-10-31",
  "dueDate": "2026-10-15",
  "ownerUserId": 124,
  "createdAt": "2025-07-16T21:09:06.536Z",
  "updatedAt": "2026-04-19T18:56:07.222Z"
}