example-data.com
Menu
Browse docs and collections

Overview

projects / #84

Component variants

Related

Request

curl example

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

JavaScript example

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

Python example

import requests

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

Response

{
  "id": 84,
  "orgId": 30,
  "teamId": 94,
  "name": "API Migration",
  "slug": "gleason-kertzmann-api-migration",
  "description": "Tener tibi theatrum statua.",
  "status": "archived",
  "startDate": "2026-04-23",
  "dueDate": null,
  "ownerUserId": 100,
  "createdAt": "2025-09-02T08:13:29.076Z",
  "updatedAt": "2025-11-29T23:54:36.771Z"
}