example-data.com

projects / #19

orgId
Herzog - Lowe
teamId
teams/17
name
User Onboarding
slug
herzog-lowe-user-onboarding
description
Natus venustas dedecor.
status
completed
startDate
2025-09-06
dueDate
2026-09-25
ownerUserId
72
createdAt
updatedAt

Component variants

Related

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

res = requests.get(
    "https://example-data.com/api/v1/projects/19"
)
project = res.json()
{
  "id": 19,
  "orgId": 6,
  "teamId": 17,
  "name": "User Onboarding",
  "slug": "herzog-lowe-user-onboarding",
  "description": "Natus venustas dedecor.",
  "status": "completed",
  "startDate": "2025-09-06",
  "dueDate": "2026-09-25",
  "ownerUserId": 72,
  "createdAt": "2026-01-24T01:47:40.687Z",
  "updatedAt": "2026-05-05T21:37:55.724Z"
}
Draftbit