example-data.com
Menu
Browse docs and collections

Overview

projects / #61

Mobile App v2

orgId
Ziemann LLC
teamId
teams/61
name
Mobile App v2
slug
ziemann-llc-mobile-app-v2
description
Appositus cur nisi considero venustas alo cariosus adeptio.
status
active
startDate
2025-07-21
dueDate
2026-08-12
ownerUserId
Abdul Rau @abdul.rau
createdAt
updatedAt

Component variants

Related

Request

curl example

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

JavaScript example

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

Python example

import requests

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

Response

{
  "id": 61,
  "orgId": 20,
  "teamId": 61,
  "name": "Mobile App v2",
  "slug": "ziemann-llc-mobile-app-v2",
  "description": "Appositus cur nisi considero venustas alo cariosus adeptio.",
  "status": "active",
  "startDate": "2025-07-21",
  "dueDate": "2026-08-12",
  "ownerUserId": 108,
  "createdAt": "2026-01-07T11:39:30.273Z",
  "updatedAt": "2026-02-07T08:31:46.570Z"
}