example-data.com
Menu
Browse docs and collections

Overview

projects / #43

Design System

orgId
Reichel - Kling
teamId
name
Design System
slug
reichel-kling-design-system
description
Pax labore decumbo stillicidium atque nulla admoneo aer.
status
archived
startDate
2026-02-09
dueDate
2026-09-08
ownerUserId
Jadon Nicolas @jadon.nicolas
createdAt
updatedAt

Component variants

Related

Request

curl example

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

JavaScript example

const res = await fetch(
  "https://example-data.com/api/v1/projects/43"
);
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/43"
);
const project = (await res.json()) as Project;

Python example

import requests

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

Response

{
  "id": 43,
  "orgId": 14,
  "teamId": null,
  "name": "Design System",
  "slug": "reichel-kling-design-system",
  "description": "Pax labore decumbo stillicidium atque nulla admoneo aer.",
  "status": "archived",
  "startDate": "2026-02-09",
  "dueDate": "2026-09-08",
  "ownerUserId": 213,
  "createdAt": "2025-06-14T21:28:12.103Z",
  "updatedAt": "2025-07-03T08:32:29.006Z"
}