example-data.com
Menu
Browse docs and collections

Overview

projects / #32

Reporting Module

orgId
Kerluke, Wisozk and Ratke
teamId
teams/26
name
Reporting Module
slug
kerluke-wisozk-and-ratke-reporting-module
description
Coma cilicium caecus deleo vado amitto saepe minima.
status
active
startDate
2025-05-25
dueDate
2026-07-18
ownerUserId
Jamal Gerhold @jamal.gerhold
createdAt
updatedAt

Component variants

Related

Request

curl example

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

JavaScript example

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

Python example

import requests

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

Response

{
  "id": 32,
  "orgId": 10,
  "teamId": 26,
  "name": "Reporting Module",
  "slug": "kerluke-wisozk-and-ratke-reporting-module",
  "description": "Coma cilicium caecus deleo vado amitto saepe minima.",
  "status": "active",
  "startDate": "2025-05-25",
  "dueDate": "2026-07-18",
  "ownerUserId": 115,
  "createdAt": "2026-02-01T16:11:08.344Z",
  "updatedAt": "2026-03-18T15:45:33.796Z"
}