example-data.com
Menu
Browse docs and collections

Overview

projects / #38

User Onboarding

orgId
Swift - Lakin
teamId
teams/34
name
User Onboarding
slug
swift-lakin-user-onboarding
description
Velum distinctio asperiores.
status
active
startDate
2025-09-30
dueDate
2026-09-13
ownerUserId
Audreanne Will @audreanne_will
createdAt
updatedAt

Component variants

Related

Request

curl example

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

JavaScript example

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

Python example

import requests

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

Response

{
  "id": 38,
  "orgId": 12,
  "teamId": 34,
  "name": "User Onboarding",
  "slug": "swift-lakin-user-onboarding",
  "description": "Velum distinctio asperiores.",
  "status": "active",
  "startDate": "2025-09-30",
  "dueDate": "2026-09-13",
  "ownerUserId": 127,
  "createdAt": "2025-11-03T00:20:02.693Z",
  "updatedAt": "2025-11-29T10:38:13.005Z"
}