example-data.com
Menu
Browse docs and collections

Overview

projects / #5

Design System

orgId
Lakin Group
teamId
teams/5
name
Design System
slug
lakin-group-design-system
description
Curo sapiente considero aliqua canis suffragium vir carbo voluptatum.
status
on_hold
startDate
2026-01-16
dueDate
2026-09-02
ownerUserId
Tabitha McKenzie @tabitha_mckenzie
createdAt
updatedAt

Component variants

Related

Request

curl example

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

JavaScript example

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

Python example

import requests

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

Response

{
  "id": 5,
  "orgId": 1,
  "teamId": 5,
  "name": "Design System",
  "slug": "lakin-group-design-system",
  "description": "Curo sapiente considero aliqua canis suffragium vir carbo voluptatum.",
  "status": "on_hold",
  "startDate": "2026-01-16",
  "dueDate": "2026-09-02",
  "ownerUserId": 98,
  "createdAt": "2025-07-02T02:46:32.248Z",
  "updatedAt": "2026-01-11T10:10:55.929Z"
}