example-data.com
Menu
Browse docs and collections

Overview

projects / #3

Admin Panel

orgId
Lakin Group
teamId
teams/3
name
Admin Panel
slug
lakin-group-admin-panel
description
Suppono volaticus cuius cognatus.
status
completed
startDate
2025-10-27
dueDate
2026-06-01
ownerUserId
Florencio Mohr @florencio_mohr
createdAt
updatedAt

Component variants

Related

Request

curl example

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

JavaScript example

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

Python example

import requests

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

Response

{
  "id": 3,
  "orgId": 1,
  "teamId": 3,
  "name": "Admin Panel",
  "slug": "lakin-group-admin-panel",
  "description": "Suppono volaticus cuius cognatus.",
  "status": "completed",
  "startDate": "2025-10-27",
  "dueDate": "2026-06-01",
  "ownerUserId": 71,
  "createdAt": "2025-08-16T13:48:58.315Z",
  "updatedAt": "2025-12-21T05:46:11.897Z"
}