example-data.com
Menu
Browse docs and collections

Overview

projects / #77

User Onboarding

orgId
Cormier, Rogahn and Bogisich
teamId
name
User Onboarding
slug
cormier-rogahn-and-bogisich-user-onboarding
description
Amissio ventito pax crux via stultus synagoga pax.
status
active
startDate
2026-03-08
dueDate
2026-07-04
ownerUserId
Ludwig Stiedemann @ludwig_stiedemann
createdAt
updatedAt

Component variants

Related

Request

curl example

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

JavaScript example

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

Python example

import requests

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

Response

{
  "id": 77,
  "orgId": 27,
  "teamId": null,
  "name": "User Onboarding",
  "slug": "cormier-rogahn-and-bogisich-user-onboarding",
  "description": "Amissio ventito pax crux via stultus synagoga pax.",
  "status": "active",
  "startDate": "2026-03-08",
  "dueDate": "2026-07-04",
  "ownerUserId": 132,
  "createdAt": "2026-04-14T13:38:45.259Z",
  "updatedAt": "2026-05-09T08:11:14.255Z"
}