example-data.com
Menu
Browse docs and collections

Overview

projects / #85

CI/CD Pipeline

orgId
Gleason - Kertzmann
teamId
name
CI/CD Pipeline
slug
gleason-kertzmann-ci-cd-pipeline
description
Pectus claudeo decimus adsuesco recusandae textus conspergo tantillus.
status
planning
startDate
2025-12-10
dueDate
ownerUserId
Hershel Smitham @hershel.smitham
createdAt
updatedAt

Component variants

Related

Request

curl example

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

JavaScript example

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

Python example

import requests

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

Response

{
  "id": 85,
  "orgId": 30,
  "teamId": null,
  "name": "CI/CD Pipeline",
  "slug": "gleason-kertzmann-ci-cd-pipeline",
  "description": "Pectus claudeo decimus adsuesco recusandae textus conspergo tantillus.",
  "status": "planning",
  "startDate": "2025-12-10",
  "dueDate": null,
  "ownerUserId": 147,
  "createdAt": "2025-12-31T21:54:17.659Z",
  "updatedAt": "2026-04-03T08:33:42.726Z"
}