example-data.com
Menu
Browse docs and collections

Overview

projects / #76

Component variants

Related

Request

curl example

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

JavaScript example

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

Python example

import requests

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

Response

{
  "id": 76,
  "orgId": 26,
  "teamId": 81,
  "name": "Legacy Migration",
  "slug": "altenwerth-corkery-legacy-migration",
  "description": "Creator vesco vindico.",
  "status": "on_hold",
  "startDate": "2026-02-20",
  "dueDate": null,
  "ownerUserId": 145,
  "createdAt": "2025-06-13T17:04:08.527Z",
  "updatedAt": "2026-02-26T09:07:28.273Z"
}