example-data.com
Menu
Browse docs and collections

Overview

projects / #41

Reporting Module

orgId
Kovacek and Sons
teamId
teams/35
name
Reporting Module
slug
kovacek-and-sons-reporting-module
description
Correptius libero spiculum urbanus quisquam super eaque exercitationem soluta.
status
active
startDate
2025-09-21
dueDate
2026-08-05
ownerUserId
Alex Lang @alex_lang85
createdAt
updatedAt

Component variants

Related

Request

curl example

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

JavaScript example

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

Python example

import requests

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

Response

{
  "id": 41,
  "orgId": 13,
  "teamId": 35,
  "name": "Reporting Module",
  "slug": "kovacek-and-sons-reporting-module",
  "description": "Correptius libero spiculum urbanus quisquam super eaque exercitationem soluta.",
  "status": "active",
  "startDate": "2025-09-21",
  "dueDate": "2026-08-05",
  "ownerUserId": 163,
  "createdAt": "2026-04-04T20:03:40.750Z",
  "updatedAt": "2026-05-07T07:36:23.485Z"
}