example-data.com
Menu
Browse docs and collections

Overview

projects / #18

CI/CD Pipeline

orgId
Herzog - Lowe
teamId
name
CI/CD Pipeline
slug
herzog-lowe-ci-cd-pipeline
description
Barba sumo depromo depopulo ago.
status
archived
startDate
2025-11-06
dueDate
2026-08-25
ownerUserId
Alex Lang @alex_lang85
createdAt
updatedAt

Component variants

Related

Request

curl example

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

JavaScript example

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

Python example

import requests

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

Response

{
  "id": 18,
  "orgId": 6,
  "teamId": null,
  "name": "CI/CD Pipeline",
  "slug": "herzog-lowe-ci-cd-pipeline",
  "description": "Barba sumo depromo depopulo ago.",
  "status": "archived",
  "startDate": "2025-11-06",
  "dueDate": "2026-08-25",
  "ownerUserId": 163,
  "createdAt": "2025-08-20T19:14:48.678Z",
  "updatedAt": "2026-05-04T10:14:37.959Z"
}