example-data.com
Menu
Browse docs and collections

Overview

projects / #30

Data Pipeline

orgId
Predovic, Prosacco and O'Hara
teamId
name
Data Pipeline
slug
predovic-prosacco-and-o-hara-data-pipeline
description
Thymum tenetur perspiciatis acceptus aduro.
status
planning
startDate
2025-08-30
dueDate
2026-09-03
ownerUserId
Maryam Kunze @maryam_kunze
createdAt
updatedAt

Component variants

Related

Request

curl example

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

JavaScript example

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

Python example

import requests

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

Response

{
  "id": 30,
  "orgId": 9,
  "teamId": null,
  "name": "Data Pipeline",
  "slug": "predovic-prosacco-and-o-hara-data-pipeline",
  "description": "Thymum tenetur perspiciatis acceptus aduro.",
  "status": "planning",
  "startDate": "2025-08-30",
  "dueDate": "2026-09-03",
  "ownerUserId": 195,
  "createdAt": "2026-03-05T14:18:05.378Z",
  "updatedAt": "2026-04-28T10:49:33.379Z"
}