example-data.com

projects / #84

orgId
Gleason - Kertzmann
teamId
teams/94
name
API Migration
slug
gleason-kertzmann-api-migration
description
Tener tibi theatrum statua.
status
archived
startDate
2026-04-23
dueDate
ownerUserId
100
createdAt
updatedAt

Component variants

Related

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

res = requests.get(
    "https://example-data.com/api/v1/projects/84"
)
project = res.json()
{
  "id": 84,
  "orgId": 30,
  "teamId": 94,
  "name": "API Migration",
  "slug": "gleason-kertzmann-api-migration",
  "description": "Tener tibi theatrum statua.",
  "status": "archived",
  "startDate": "2026-04-23",
  "dueDate": null,
  "ownerUserId": 100,
  "createdAt": "2025-09-02T08:13:29.076Z",
  "updatedAt": "2025-11-29T23:54:36.771Z"
}
Draftbit