example-data.com
Menu
Browse docs and collections

Overview

projects / #42

Website Redesign

orgId
Kovacek and Sons
teamId
teams/35
name
Website Redesign
slug
kovacek-and-sons-website-redesign
description
Confido super totidem careo.
status
on_hold
startDate
2026-04-22
dueDate
2026-11-09
ownerUserId
Celia D'Amore @celia_damore
createdAt
updatedAt

Component variants

Related

Request

curl example

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

JavaScript example

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

Python example

import requests

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

Response

{
  "id": 42,
  "orgId": 13,
  "teamId": 35,
  "name": "Website Redesign",
  "slug": "kovacek-and-sons-website-redesign",
  "description": "Confido super totidem careo.",
  "status": "on_hold",
  "startDate": "2026-04-22",
  "dueDate": "2026-11-09",
  "ownerUserId": 24,
  "createdAt": "2025-08-09T16:26:21.887Z",
  "updatedAt": "2026-04-04T05:20:06.390Z"
}