example-data.com
Menu
Browse docs and collections

Overview

projects / #51

Design System

orgId
Ratke - Kub
teamId
name
Design System
slug
ratke-kub-design-system
description
Uter caute combibo defluo cavus animi venio.
status
planning
startDate
2025-11-03
dueDate
2026-10-07
ownerUserId
Alanna Kilback @alanna_kilback31
createdAt
updatedAt

Component variants

Related

Request

curl example

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

JavaScript example

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

Python example

import requests

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

Response

{
  "id": 51,
  "orgId": 18,
  "teamId": null,
  "name": "Design System",
  "slug": "ratke-kub-design-system",
  "description": "Uter caute combibo defluo cavus animi venio.",
  "status": "planning",
  "startDate": "2025-11-03",
  "dueDate": "2026-10-07",
  "ownerUserId": 14,
  "createdAt": "2026-04-29T15:30:09.597Z",
  "updatedAt": "2026-05-13T14:37:05.195Z"
}