example-data.com

projects / #61

orgId
Ziemann LLC
teamId
teams/61
name
Mobile App v2
slug
ziemann-llc-mobile-app-v2
description
Appositus cur nisi considero venustas alo cariosus adeptio.
status
active
startDate
2025-07-21
dueDate
2026-08-12
ownerUserId
108
createdAt
updatedAt

Component variants

Related

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

res = requests.get(
    "https://example-data.com/api/v1/projects/61"
)
project = res.json()
{
  "id": 61,
  "orgId": 20,
  "teamId": 61,
  "name": "Mobile App v2",
  "slug": "ziemann-llc-mobile-app-v2",
  "description": "Appositus cur nisi considero venustas alo cariosus adeptio.",
  "status": "active",
  "startDate": "2025-07-21",
  "dueDate": "2026-08-12",
  "ownerUserId": 108,
  "createdAt": "2026-01-07T11:39:30.273Z",
  "updatedAt": "2026-02-07T08:31:46.570Z"
}
Draftbit