example-data.com
Menu
Browse docs and collections

Overview

projects / #31

Component variants

Related

Request

curl example

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

JavaScript example

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

Python example

import requests

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

Response

{
  "id": 31,
  "orgId": 10,
  "teamId": 26,
  "name": "API Migration",
  "slug": "kerluke-wisozk-and-ratke-api-migration",
  "description": "Cursus vomer vestrum valens saepe.",
  "status": "archived",
  "startDate": "2026-02-09",
  "dueDate": "2026-08-12",
  "ownerUserId": 125,
  "createdAt": "2025-10-04T20:34:13.913Z",
  "updatedAt": "2026-05-02T15:00:45.044Z"
}