example-data.com
Menu
Browse docs and collections

Overview

projects / #60

Design System

orgId
Ziemann LLC
teamId
teams/62
name
Design System
slug
ziemann-llc-design-system
description
Esse quod tersus cibo thalassinus corroboro.
status
on_hold
startDate
2026-02-19
dueDate
ownerUserId
Tabitha McKenzie @tabitha_mckenzie
createdAt
updatedAt

Component variants

Related

Request

curl example

curl -sS \
  "https://example-data.com/api/v1/projects/60" \
  -H "Accept: application/json"

JavaScript example

const res = await fetch(
  "https://example-data.com/api/v1/projects/60"
);
const project = await res.json();

TypeScript example

// Download once: mkdir -p types && curl -o types/projects.d.ts https://example-data.com/types/projects.d.ts
import type { Project } from "./types/projects";

const res = await fetch(
  "https://example-data.com/api/v1/projects/60"
);
const project = (await res.json()) as Project;

Python example

import requests

res = requests.get(
    "https://example-data.com/api/v1/projects/60"
)
project = res.json()

Response

{
  "id": 60,
  "orgId": 20,
  "teamId": 62,
  "name": "Design System",
  "slug": "ziemann-llc-design-system",
  "description": "Esse quod tersus cibo thalassinus corroboro.",
  "status": "on_hold",
  "startDate": "2026-02-19",
  "dueDate": null,
  "ownerUserId": 98,
  "createdAt": "2026-02-02T09:41:35.743Z",
  "updatedAt": "2026-03-25T16:13:10.396Z"
}