example-data.com

projects / #69

orgId
Prohaska - Wiza
teamId
teams/75
name
Security Audit
slug
prohaska-wiza-security-audit
description
Quaerat accusamus acies.
status
archived
startDate
2026-03-01
dueDate
2026-07-01
ownerUserId
63
createdAt
updatedAt

Component variants

Related

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

res = requests.get(
    "https://example-data.com/api/v1/projects/69"
)
project = res.json()
{
  "id": 69,
  "orgId": 23,
  "teamId": 75,
  "name": "Security Audit",
  "slug": "prohaska-wiza-security-audit",
  "description": "Quaerat accusamus acies.",
  "status": "archived",
  "startDate": "2026-03-01",
  "dueDate": "2026-07-01",
  "ownerUserId": 63,
  "createdAt": "2025-06-14T05:06:20.024Z",
  "updatedAt": "2026-04-01T08:17:12.015Z"
}
Draftbit