example-data.com
Menu
Browse docs and collections

Overview

projects / #69

Component variants

Related

Request

curl example

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

JavaScript example

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

Python example

import requests

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

Response

{
  "id": 69,
  "orgId": 23,
  "teamId": 75,
  "name": "Security Audit",
  "slug": "prohaska-wiza-security-audit",
  "description": "Quaerat accusamus acies.",
  "status": "archived",
  "startDate": "2026-03-01",
  "dueDate": "2026-07-01",
  "ownerUserId": 63,
  "createdAt": "2025-06-14T05:06:20.024Z",
  "updatedAt": "2026-04-01T08:17:12.015Z"
}