example-data.com

projects / #50

orgId
Flatley Group
teamId
teams/50
name
Design System
slug
flatley-group-design-system
description
Spoliatio conforto contego quas.
status
completed
startDate
2026-02-13
dueDate
ownerUserId
19
createdAt
updatedAt

Component variants

Related

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

res = requests.get(
    "https://example-data.com/api/v1/projects/50"
)
project = res.json()
{
  "id": 50,
  "orgId": 17,
  "teamId": 50,
  "name": "Design System",
  "slug": "flatley-group-design-system",
  "description": "Spoliatio conforto contego quas.",
  "status": "completed",
  "startDate": "2026-02-13",
  "dueDate": null,
  "ownerUserId": 19,
  "createdAt": "2025-11-17T10:40:43.953Z",
  "updatedAt": "2026-01-17T01:11:12.386Z"
}
Draftbit