example-data.com

projects / #72

orgId
Maggio and Sons
teamId
teams/80
name
Mobile App v2
slug
maggio-and-sons-mobile-app-v2
description
Aut fugiat trado titulus expedita terebro sed adicio arcesso.
status
completed
startDate
2026-01-01
dueDate
ownerUserId
209
createdAt
updatedAt

Component variants

Related

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

res = requests.get(
    "https://example-data.com/api/v1/projects/72"
)
project = res.json()
{
  "id": 72,
  "orgId": 25,
  "teamId": 80,
  "name": "Mobile App v2",
  "slug": "maggio-and-sons-mobile-app-v2",
  "description": "Aut fugiat trado titulus expedita terebro sed adicio arcesso.",
  "status": "completed",
  "startDate": "2026-01-01",
  "dueDate": null,
  "ownerUserId": 209,
  "createdAt": "2026-03-07T00:52:31.826Z",
  "updatedAt": "2026-04-25T00:25:38.559Z"
}
Draftbit