example-data.com

projects / #16

orgId
McGlynn, Bogisich and Toy
teamId
name
Payment Gateway
slug
mcglynn-bogisich-and-toy-payment-gateway
description
Vulgus tonsor conscendo adversus explicabo adnuo cernuus timidus tergo.
status
active
startDate
2026-02-17
dueDate
2026-07-13
ownerUserId
82
createdAt
updatedAt

Component variants

Related

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

res = requests.get(
    "https://example-data.com/api/v1/projects/16"
)
project = res.json()
{
  "id": 16,
  "orgId": 5,
  "teamId": null,
  "name": "Payment Gateway",
  "slug": "mcglynn-bogisich-and-toy-payment-gateway",
  "description": "Vulgus tonsor conscendo adversus explicabo adnuo cernuus timidus tergo.",
  "status": "active",
  "startDate": "2026-02-17",
  "dueDate": "2026-07-13",
  "ownerUserId": 82,
  "createdAt": "2025-11-28T23:03:00.941Z",
  "updatedAt": "2026-02-05T04:49:25.523Z"
}
Draftbit