example-data.com

projects / #5

orgId
Lakin Group
teamId
teams/5
name
Design System
slug
lakin-group-design-system
description
Curo sapiente considero aliqua canis suffragium vir carbo voluptatum.
status
on_hold
startDate
2026-01-16
dueDate
2026-09-02
ownerUserId
98
createdAt
updatedAt

Component variants

Related

curl -sS \
  "https://example-data.com/api/v1/projects/5" \
  -H "Accept: application/json"
const res = await fetch(
  "https://example-data.com/api/v1/projects/5"
);
const project = await res.json();
import type { Project } from "https://example-data.com/types/projects.d.ts";

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

res = requests.get(
    "https://example-data.com/api/v1/projects/5"
)
project = res.json()
{
  "id": 5,
  "orgId": 1,
  "teamId": 5,
  "name": "Design System",
  "slug": "lakin-group-design-system",
  "description": "Curo sapiente considero aliqua canis suffragium vir carbo voluptatum.",
  "status": "on_hold",
  "startDate": "2026-01-16",
  "dueDate": "2026-09-02",
  "ownerUserId": 98,
  "createdAt": "2025-07-02T02:46:32.248Z",
  "updatedAt": "2026-01-11T10:10:55.929Z"
}
Draftbit