example-data.com
Menu
Browse docs and collections

Overview

projects / #39

Reporting Module

orgId
Swift - Lakin
teamId
teams/31
name
Reporting Module
slug
swift-lakin-reporting-module
description
Decet creta temeritas.
status
archived
startDate
2026-03-25
dueDate
2026-09-19
ownerUserId
Elva Roberts @elva.roberts48
createdAt
updatedAt

Component variants

Related

Request

curl example

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

JavaScript example

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

Python example

import requests

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

Response

{
  "id": 39,
  "orgId": 12,
  "teamId": 31,
  "name": "Reporting Module",
  "slug": "swift-lakin-reporting-module",
  "description": "Decet creta temeritas.",
  "status": "archived",
  "startDate": "2026-03-25",
  "dueDate": "2026-09-19",
  "ownerUserId": 107,
  "createdAt": "2025-05-31T15:43:04.756Z",
  "updatedAt": "2026-01-11T03:45:44.652Z"
}