example-data.com
Menu
Browse docs and collections

Overview

projects / #11

Notification Service

orgId
Mayert LLC
teamId
teams/10
name
Notification Service
slug
mayert-llc-notification-service
description
Degusto statim vox aedificium nam stips vespillo magnam venustas.
status
active
startDate
2026-04-30
dueDate
ownerUserId
Claudie Hagenes @claudie_hagenes
createdAt
updatedAt

Component variants

Related

Request

curl example

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

JavaScript example

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

Python example

import requests

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

Response

{
  "id": 11,
  "orgId": 3,
  "teamId": 10,
  "name": "Notification Service",
  "slug": "mayert-llc-notification-service",
  "description": "Degusto statim vox aedificium nam stips vespillo magnam venustas.",
  "status": "active",
  "startDate": "2026-04-30",
  "dueDate": null,
  "ownerUserId": 232,
  "createdAt": "2026-04-21T12:46:48.119Z",
  "updatedAt": "2026-04-27T01:10:25.593Z"
}