example-data.com
Menu
Browse docs and collections

Overview

projects / #29

Component variants

Related

Request

curl example

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

JavaScript example

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

Python example

import requests

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

Response

{
  "id": 29,
  "orgId": 9,
  "teamId": 23,
  "name": "Admin Panel",
  "slug": "predovic-prosacco-and-o-hara-admin-panel",
  "description": "Arma una harum demitto succedo summisse.",
  "status": "on_hold",
  "startDate": "2026-02-05",
  "dueDate": null,
  "ownerUserId": 204,
  "createdAt": "2026-02-07T00:40:20.711Z",
  "updatedAt": "2026-03-30T07:23:16.792Z"
}