example-data.com
Menu
Browse docs and collections

Overview

projects / #45

Authentication Revamp

orgId
Lowe and Sons
teamId
teams/45
name
Authentication Revamp
slug
lowe-and-sons-authentication-revamp
description
Viscus aggero crebro bos comitatus canis.
status
active
startDate
2025-08-13
dueDate
2026-07-13
ownerUserId
Lilla Koss @lilla.koss
createdAt
updatedAt

Component variants

Related

Request

curl example

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

JavaScript example

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

Python example

import requests

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

Response

{
  "id": 45,
  "orgId": 15,
  "teamId": 45,
  "name": "Authentication Revamp",
  "slug": "lowe-and-sons-authentication-revamp",
  "description": "Viscus aggero crebro bos comitatus canis.",
  "status": "active",
  "startDate": "2025-08-13",
  "dueDate": "2026-07-13",
  "ownerUserId": 59,
  "createdAt": "2025-09-23T19:21:29.611Z",
  "updatedAt": "2026-01-22T16:13:18.020Z"
}