example-data.com

projects / #56

orgId
Johns, Reinger and Toy
teamId
name
Integration Hub
slug
johns-reinger-and-toy-integration-hub
description
Atrox combibo cultura.
status
on_hold
startDate
2026-02-25
dueDate
2026-08-21
ownerUserId
136
createdAt
updatedAt

Component variants

Related

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

res = requests.get(
    "https://example-data.com/api/v1/projects/56"
)
project = res.json()
{
  "id": 56,
  "orgId": 19,
  "teamId": null,
  "name": "Integration Hub",
  "slug": "johns-reinger-and-toy-integration-hub",
  "description": "Atrox combibo cultura.",
  "status": "on_hold",
  "startDate": "2026-02-25",
  "dueDate": "2026-08-21",
  "ownerUserId": 136,
  "createdAt": "2025-10-25T04:16:18.027Z",
  "updatedAt": "2026-03-18T11:45:43.052Z"
}
Draftbit