example-data.com

projects / #12

orgId
Mayert LLC
teamId
teams/7
name
Design System
slug
mayert-llc-design-system
description
Civitas pecus repudiandae crapula absconditus.
status
planning
startDate
2025-07-30
dueDate
2026-07-08
ownerUserId
95
createdAt
updatedAt

Component variants

Related

curl -sS \
  "https://example-data.com/api/v1/projects/12" \
  -H "Accept: application/json"
const res = await fetch(
  "https://example-data.com/api/v1/projects/12"
);
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/12"
);
const project = (await res.json()) as Project;
import requests

res = requests.get(
    "https://example-data.com/api/v1/projects/12"
)
project = res.json()
{
  "id": 12,
  "orgId": 3,
  "teamId": 7,
  "name": "Design System",
  "slug": "mayert-llc-design-system",
  "description": "Civitas pecus repudiandae crapula absconditus.",
  "status": "planning",
  "startDate": "2025-07-30",
  "dueDate": "2026-07-08",
  "ownerUserId": 95,
  "createdAt": "2026-02-18T16:26:13.628Z",
  "updatedAt": "2026-05-12T02:30:27.033Z"
}
Draftbit