example-data.com
Menu
Browse docs and collections

Overview

projects / #27

Dashboard Overhaul

orgId
Predovic, Prosacco and O'Hara
teamId
name
Dashboard Overhaul
slug
predovic-prosacco-and-o-hara-dashboard-overhaul
description
Tenus virtus coruscus odit advoco confido vicissitudo depraedor dedecor vitium.
status
active
startDate
2025-12-24
dueDate
2026-07-12
ownerUserId
Rupert Lebsack @rupert.lebsack
createdAt
updatedAt

Component variants

Related

Request

curl example

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

JavaScript example

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

Python example

import requests

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

Response

{
  "id": 27,
  "orgId": 9,
  "teamId": null,
  "name": "Dashboard Overhaul",
  "slug": "predovic-prosacco-and-o-hara-dashboard-overhaul",
  "description": "Tenus virtus coruscus odit advoco confido vicissitudo depraedor dedecor vitium.",
  "status": "active",
  "startDate": "2025-12-24",
  "dueDate": "2026-07-12",
  "ownerUserId": 249,
  "createdAt": "2025-10-28T02:44:54.864Z",
  "updatedAt": "2026-02-10T00:04:50.481Z"
}