example-data.com

projects / #45

orgId
Lowe and Sons
teamId
teams/45
name
Authentication Revamp
slug
lowe-and-sons-authentication-revamp
description
Viscus aggero crebro bos comitatus canis.
status
active
startDate
2025-08-13
dueDate
2026-07-13
ownerUserId
59
createdAt
updatedAt

Component variants

Related

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

res = requests.get(
    "https://example-data.com/api/v1/projects/45"
)
project = res.json()
{
  "id": 45,
  "orgId": 15,
  "teamId": 45,
  "name": "Authentication Revamp",
  "slug": "lowe-and-sons-authentication-revamp",
  "description": "Viscus aggero crebro bos comitatus canis.",
  "status": "active",
  "startDate": "2025-08-13",
  "dueDate": "2026-07-13",
  "ownerUserId": 59,
  "createdAt": "2025-09-23T19:21:29.611Z",
  "updatedAt": "2026-01-22T16:13:18.020Z"
}
Draftbit