example-data.com
Menu
Browse docs and collections

Overview

projects / #7

CI/CD Pipeline

orgId
Cremin - Kautzer
teamId
name
CI/CD Pipeline
slug
cremin-kautzer-ci-cd-pipeline
description
Spes adipiscor tego defungo solvo decor venustas decens vesica.
status
planning
startDate
2025-11-11
dueDate
2026-06-07
ownerUserId
Velma Jerde @velma.jerde56
createdAt
updatedAt

Component variants

Related

Request

curl example

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

JavaScript example

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

Python example

import requests

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

Response

{
  "id": 7,
  "orgId": 2,
  "teamId": null,
  "name": "CI/CD Pipeline",
  "slug": "cremin-kautzer-ci-cd-pipeline",
  "description": "Spes adipiscor tego defungo solvo decor venustas decens vesica.",
  "status": "planning",
  "startDate": "2025-11-11",
  "dueDate": "2026-06-07",
  "ownerUserId": 93,
  "createdAt": "2026-04-21T01:44:05.276Z",
  "updatedAt": "2026-04-27T23:33:24.747Z"
}