example-data.com
Menu
Browse docs and collections

Overview

projects / #72

Mobile App v2

orgId
Maggio and Sons
teamId
teams/80
name
Mobile App v2
slug
maggio-and-sons-mobile-app-v2
description
Aut fugiat trado titulus expedita terebro sed adicio arcesso.
status
completed
startDate
2026-01-01
dueDate
ownerUserId
Otho Nikolaus @otho.nikolaus99
createdAt
updatedAt

Component variants

Related

Request

curl example

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

JavaScript example

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

Python example

import requests

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

Response

{
  "id": 72,
  "orgId": 25,
  "teamId": 80,
  "name": "Mobile App v2",
  "slug": "maggio-and-sons-mobile-app-v2",
  "description": "Aut fugiat trado titulus expedita terebro sed adicio arcesso.",
  "status": "completed",
  "startDate": "2026-01-01",
  "dueDate": null,
  "ownerUserId": 209,
  "createdAt": "2026-03-07T00:52:31.826Z",
  "updatedAt": "2026-04-25T00:25:38.559Z"
}