example-data.com

projects / #63

orgId
Toy and Sons
teamId
teams/65
name
Admin Panel
slug
toy-and-sons-admin-panel
description
Verbum capio patria somniculosus vergo.
status
completed
startDate
2025-07-15
dueDate
2026-10-12
ownerUserId
149
createdAt
updatedAt

Component variants

Related

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

res = requests.get(
    "https://example-data.com/api/v1/projects/63"
)
project = res.json()
{
  "id": 63,
  "orgId": 21,
  "teamId": 65,
  "name": "Admin Panel",
  "slug": "toy-and-sons-admin-panel",
  "description": "Verbum capio patria somniculosus vergo.",
  "status": "completed",
  "startDate": "2025-07-15",
  "dueDate": "2026-10-12",
  "ownerUserId": 149,
  "createdAt": "2025-06-17T06:23:17.212Z",
  "updatedAt": "2026-05-05T06:26:05.593Z"
}
Draftbit