example-data.com

projects / #6

orgId
Cremin - Kautzer
teamId
teams/6
name
API Migration
slug
cremin-kautzer-api-migration
description
Perspiciatis sodalitas theatrum convoco acervus cohibeo conqueror.
status
active
startDate
2025-12-02
dueDate
2026-06-03
ownerUserId
88
createdAt
updatedAt

Component variants

Related

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

res = requests.get(
    "https://example-data.com/api/v1/projects/6"
)
project = res.json()
{
  "id": 6,
  "orgId": 2,
  "teamId": 6,
  "name": "API Migration",
  "slug": "cremin-kautzer-api-migration",
  "description": "Perspiciatis sodalitas theatrum convoco acervus cohibeo conqueror.",
  "status": "active",
  "startDate": "2025-12-02",
  "dueDate": "2026-06-03",
  "ownerUserId": 88,
  "createdAt": "2025-07-30T06:26:32.098Z",
  "updatedAt": "2025-07-31T14:56:36.177Z"
}
Draftbit