example-data.com

projects / #82

orgId
Corkery - Wunsch
teamId
name
Authentication Revamp
slug
corkery-wunsch-authentication-revamp
description
Culpo xiphias verto.
status
on_hold
startDate
2026-01-17
dueDate
ownerUserId
108
createdAt
updatedAt

Component variants

Related

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

res = requests.get(
    "https://example-data.com/api/v1/projects/82"
)
project = res.json()
{
  "id": 82,
  "orgId": 29,
  "teamId": null,
  "name": "Authentication Revamp",
  "slug": "corkery-wunsch-authentication-revamp",
  "description": "Culpo xiphias verto.",
  "status": "on_hold",
  "startDate": "2026-01-17",
  "dueDate": null,
  "ownerUserId": 108,
  "createdAt": "2026-05-01T21:23:19.261Z",
  "updatedAt": "2026-05-11T09:31:47.021Z"
}
Draftbit