example-data.com

projects / #15

orgId
McGlynn, Bogisich and Toy
teamId
teams/16
name
User Onboarding
slug
mcglynn-bogisich-and-toy-user-onboarding
description
Varius cimentarius carbo.
status
archived
startDate
2025-09-17
dueDate
2026-10-28
ownerUserId
181
createdAt
updatedAt

Component variants

Related

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

res = requests.get(
    "https://example-data.com/api/v1/projects/15"
)
project = res.json()
{
  "id": 15,
  "orgId": 5,
  "teamId": 16,
  "name": "User Onboarding",
  "slug": "mcglynn-bogisich-and-toy-user-onboarding",
  "description": "Varius cimentarius carbo.",
  "status": "archived",
  "startDate": "2025-09-17",
  "dueDate": "2026-10-28",
  "ownerUserId": 181,
  "createdAt": "2025-12-05T21:15:17.650Z",
  "updatedAt": "2026-02-10T23:18:50.402Z"
}
Draftbit