example-data.com
Menu
Browse docs and collections

Overview

projects / #71

Reporting Module

orgId
Maggio and Sons
teamId
name
Reporting Module
slug
maggio-and-sons-reporting-module
description
Consuasor torqueo adopto aurum sui admitto tam asper alienus.
status
active
startDate
2026-02-18
dueDate
2026-07-03
ownerUserId
Raheem Kovacek @raheem_kovacek3
createdAt
updatedAt

Component variants

Related

Request

curl example

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

JavaScript example

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

Python example

import requests

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

Response

{
  "id": 71,
  "orgId": 25,
  "teamId": null,
  "name": "Reporting Module",
  "slug": "maggio-and-sons-reporting-module",
  "description": "Consuasor torqueo adopto aurum sui admitto tam asper alienus.",
  "status": "active",
  "startDate": "2026-02-18",
  "dueDate": "2026-07-03",
  "ownerUserId": 57,
  "createdAt": "2026-02-05T06:13:14.355Z",
  "updatedAt": "2026-03-14T17:42:04.583Z"
}