example-data.com

projects / #38

orgId
Swift - Lakin
teamId
teams/34
name
User Onboarding
slug
swift-lakin-user-onboarding
description
Velum distinctio asperiores.
status
active
startDate
2025-09-30
dueDate
2026-09-13
ownerUserId
127
createdAt
updatedAt

Component variants

Related

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

res = requests.get(
    "https://example-data.com/api/v1/projects/38"
)
project = res.json()
{
  "id": 38,
  "orgId": 12,
  "teamId": 34,
  "name": "User Onboarding",
  "slug": "swift-lakin-user-onboarding",
  "description": "Velum distinctio asperiores.",
  "status": "active",
  "startDate": "2025-09-30",
  "dueDate": "2026-09-13",
  "ownerUserId": 127,
  "createdAt": "2025-11-03T00:20:02.693Z",
  "updatedAt": "2025-11-29T10:38:13.005Z"
}
Draftbit