example-data.com

projects / #36

orgId
Swift - Lakin
teamId
name
Customer Portal
slug
swift-lakin-customer-portal
description
Vinculum testimonium utroque vae curto avaritia.
status
planning
startDate
2025-08-13
dueDate
ownerUserId
241
createdAt
updatedAt

Component variants

Related

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

res = requests.get(
    "https://example-data.com/api/v1/projects/36"
)
project = res.json()
{
  "id": 36,
  "orgId": 12,
  "teamId": null,
  "name": "Customer Portal",
  "slug": "swift-lakin-customer-portal",
  "description": "Vinculum testimonium utroque vae curto avaritia.",
  "status": "planning",
  "startDate": "2025-08-13",
  "dueDate": null,
  "ownerUserId": 241,
  "createdAt": "2025-12-17T01:54:58.115Z",
  "updatedAt": "2025-12-30T08:52:53.885Z"
}
Draftbit