example-data.com
Menu
Browse docs and collections

Overview

projects / #44

Design System

orgId
Lowe and Sons
teamId
teams/43
name
Design System
slug
lowe-and-sons-design-system
description
Deporto tergeo tendo annus vir vere denique.
status
active
startDate
2025-10-08
dueDate
2026-06-29
ownerUserId
Frederic Armstrong @frederic_armstrong96
createdAt
updatedAt

Component variants

Related

Request

curl example

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

JavaScript example

const res = await fetch(
  "https://example-data.com/api/v1/projects/44"
);
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/44"
);
const project = (await res.json()) as Project;

Python example

import requests

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

Response

{
  "id": 44,
  "orgId": 15,
  "teamId": 43,
  "name": "Design System",
  "slug": "lowe-and-sons-design-system",
  "description": "Deporto tergeo tendo annus vir vere denique.",
  "status": "active",
  "startDate": "2025-10-08",
  "dueDate": "2026-06-29",
  "ownerUserId": 199,
  "createdAt": "2025-11-09T11:22:43.993Z",
  "updatedAt": "2026-01-16T14:56:45.002Z"
}