example-data.com

projects / #14

orgId
McGlynn, Bogisich and Toy
teamId
name
Website Redesign
slug
mcglynn-bogisich-and-toy-website-redesign
description
Cultura auxilium vespillo ustilo cognomen fugiat benigne defendo arto amplexus.
status
completed
startDate
2026-01-08
dueDate
ownerUserId
239
createdAt
updatedAt

Component variants

Related

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

res = requests.get(
    "https://example-data.com/api/v1/projects/14"
)
project = res.json()
{
  "id": 14,
  "orgId": 5,
  "teamId": null,
  "name": "Website Redesign",
  "slug": "mcglynn-bogisich-and-toy-website-redesign",
  "description": "Cultura auxilium vespillo ustilo cognomen fugiat benigne defendo arto amplexus.",
  "status": "completed",
  "startDate": "2026-01-08",
  "dueDate": null,
  "ownerUserId": 239,
  "createdAt": "2026-03-12T23:41:42.603Z",
  "updatedAt": "2026-03-19T16:40:00.685Z"
}
Draftbit