example-data.com
Menu
Browse docs and collections

Overview

projects / #53

Customer Portal

orgId
Ratke - Kub
teamId
teams/53
name
Customer Portal
slug
ratke-kub-customer-portal
description
Totidem spoliatio voluptas vilis.
status
completed
startDate
2025-12-21
dueDate
ownerUserId
Maryam Kunze @maryam_kunze
createdAt
updatedAt

Component variants

Related

Request

curl example

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

JavaScript example

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

Python example

import requests

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

Response

{
  "id": 53,
  "orgId": 18,
  "teamId": 53,
  "name": "Customer Portal",
  "slug": "ratke-kub-customer-portal",
  "description": "Totidem spoliatio voluptas vilis.",
  "status": "completed",
  "startDate": "2025-12-21",
  "dueDate": null,
  "ownerUserId": 195,
  "createdAt": "2026-03-31T21:49:12.622Z",
  "updatedAt": "2026-05-19T11:00:02.929Z"
}