example-data.com
Menu
Browse docs and collections

Overview

projects / #9

Admin Panel

orgId
Mayert LLC
teamId
teams/7
name
Admin Panel
slug
mayert-llc-admin-panel
description
Sollers amor vulnus censura.
status
archived
startDate
2025-10-27
dueDate
2026-10-30
ownerUserId
Lenny Howe @lenny.howe
createdAt
updatedAt

Component variants

Related

Request

curl example

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

JavaScript example

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

Python example

import requests

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

Response

{
  "id": 9,
  "orgId": 3,
  "teamId": 7,
  "name": "Admin Panel",
  "slug": "mayert-llc-admin-panel",
  "description": "Sollers amor vulnus censura.",
  "status": "archived",
  "startDate": "2025-10-27",
  "dueDate": "2026-10-30",
  "ownerUserId": 37,
  "createdAt": "2025-10-06T09:20:21.329Z",
  "updatedAt": "2026-05-14T03:00:49.737Z"
}