example-data.com

projects / #55

orgId
Ratke - Kub
teamId
teams/55
name
Data Pipeline
slug
ratke-kub-data-pipeline
description
Tribuo arma tabernus attero cupiditate allatus angulus.
status
active
startDate
2025-09-01
dueDate
ownerUserId
187
createdAt
updatedAt

Component variants

Related

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

res = requests.get(
    "https://example-data.com/api/v1/projects/55"
)
project = res.json()
{
  "id": 55,
  "orgId": 18,
  "teamId": 55,
  "name": "Data Pipeline",
  "slug": "ratke-kub-data-pipeline",
  "description": "Tribuo arma tabernus attero cupiditate allatus angulus.",
  "status": "active",
  "startDate": "2025-09-01",
  "dueDate": null,
  "ownerUserId": 187,
  "createdAt": "2025-06-15T14:00:19.742Z",
  "updatedAt": "2026-05-15T20:49:28.650Z"
}
Draftbit