example-data.com
Menu
Browse docs and collections

Overview

projects / #65

Design System

orgId
Toy and Sons
teamId
teams/66
name
Design System
slug
toy-and-sons-design-system
description
Talus atqui tabesco clibanus.
status
active
startDate
2026-03-18
dueDate
2026-06-04
ownerUserId
Einar Volkman @einar_volkman69
createdAt
updatedAt

Component variants

Related

Request

curl example

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

JavaScript example

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

Python example

import requests

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

Response

{
  "id": 65,
  "orgId": 21,
  "teamId": 66,
  "name": "Design System",
  "slug": "toy-and-sons-design-system",
  "description": "Talus atqui tabesco clibanus.",
  "status": "active",
  "startDate": "2026-03-18",
  "dueDate": "2026-06-04",
  "ownerUserId": 7,
  "createdAt": "2026-04-03T23:38:51.573Z",
  "updatedAt": "2026-04-15T19:09:40.203Z"
}