example-data.com

projects / #64

orgId
Toy and Sons
teamId
teams/65
name
Data Pipeline
slug
toy-and-sons-data-pipeline
description
Decipio cupiditas arca.
status
on_hold
startDate
2025-09-24
dueDate
ownerUserId
148
createdAt
updatedAt

Component variants

Related

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

res = requests.get(
    "https://example-data.com/api/v1/projects/64"
)
project = res.json()
{
  "id": 64,
  "orgId": 21,
  "teamId": 65,
  "name": "Data Pipeline",
  "slug": "toy-and-sons-data-pipeline",
  "description": "Decipio cupiditas arca.",
  "status": "on_hold",
  "startDate": "2025-09-24",
  "dueDate": null,
  "ownerUserId": 148,
  "createdAt": "2025-10-13T17:39:58.448Z",
  "updatedAt": "2025-12-23T08:47:11.567Z"
}
Draftbit