example-data.com
Menu
Browse docs and collections

Overview

projects / #21

User Onboarding

orgId
Schimmel, Jones and Lind
teamId
name
User Onboarding
slug
schimmel-jones-and-lind-user-onboarding
description
Utroque terror coruscus deripio cavus delego solitudo.
status
planning
startDate
2025-08-04
dueDate
2026-10-05
ownerUserId
Darian Schaden @darian_schaden36
createdAt
updatedAt

Component variants

Related

Request

curl example

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

JavaScript example

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

Python example

import requests

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

Response

{
  "id": 21,
  "orgId": 7,
  "teamId": null,
  "name": "User Onboarding",
  "slug": "schimmel-jones-and-lind-user-onboarding",
  "description": "Utroque terror coruscus deripio cavus delego solitudo.",
  "status": "planning",
  "startDate": "2025-08-04",
  "dueDate": "2026-10-05",
  "ownerUserId": 53,
  "createdAt": "2026-04-15T05:55:55.349Z",
  "updatedAt": "2026-04-16T07:54:09.135Z"
}