example-data.com
Menu
Browse docs and collections

Overview

projects / #12

Design System

orgId
Mayert LLC
teamId
teams/7
name
Design System
slug
mayert-llc-design-system
description
Civitas pecus repudiandae crapula absconditus.
status
planning
startDate
2025-07-30
dueDate
2026-07-08
ownerUserId
Ethyl Auer @ethyl_auer89
createdAt
updatedAt

Component variants

Related

Request

curl example

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

JavaScript example

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

Python example

import requests

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

Response

{
  "id": 12,
  "orgId": 3,
  "teamId": 7,
  "name": "Design System",
  "slug": "mayert-llc-design-system",
  "description": "Civitas pecus repudiandae crapula absconditus.",
  "status": "planning",
  "startDate": "2025-07-30",
  "dueDate": "2026-07-08",
  "ownerUserId": 95,
  "createdAt": "2026-02-18T16:26:13.628Z",
  "updatedAt": "2026-05-12T02:30:27.033Z"
}