example-data.com

projects / #3

orgId
Lakin Group
teamId
teams/3
name
Admin Panel
slug
lakin-group-admin-panel
description
Suppono volaticus cuius cognatus.
status
completed
startDate
2025-10-27
dueDate
2026-06-01
ownerUserId
71
createdAt
updatedAt

Component variants

Related

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

res = requests.get(
    "https://example-data.com/api/v1/projects/3"
)
project = res.json()
{
  "id": 3,
  "orgId": 1,
  "teamId": 3,
  "name": "Admin Panel",
  "slug": "lakin-group-admin-panel",
  "description": "Suppono volaticus cuius cognatus.",
  "status": "completed",
  "startDate": "2025-10-27",
  "dueDate": "2026-06-01",
  "ownerUserId": 71,
  "createdAt": "2025-08-16T13:48:58.315Z",
  "updatedAt": "2025-12-21T05:46:11.897Z"
}
Draftbit