example-data.com
Menu
Browse docs and collections

Overview

projects / #10

Website Redesign

orgId
Mayert LLC
teamId
name
Website Redesign
slug
mayert-llc-website-redesign
description
Baiulus adopto delicate color tamen.
status
archived
startDate
2025-09-29
dueDate
2026-07-30
ownerUserId
Jensen Bashirian @jensen_bashirian
createdAt
updatedAt

Component variants

Related

Request

curl example

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

JavaScript example

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

Python example

import requests

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

Response

{
  "id": 10,
  "orgId": 3,
  "teamId": null,
  "name": "Website Redesign",
  "slug": "mayert-llc-website-redesign",
  "description": "Baiulus adopto delicate color tamen.",
  "status": "archived",
  "startDate": "2025-09-29",
  "dueDate": "2026-07-30",
  "ownerUserId": 29,
  "createdAt": "2025-06-03T05:59:54.238Z",
  "updatedAt": "2026-04-22T21:11:57.888Z"
}