example-data.com
Menu
Browse docs and collections

Overview

projects / #64

Data Pipeline

orgId
Toy and Sons
teamId
teams/65
name
Data Pipeline
slug
toy-and-sons-data-pipeline
description
Decipio cupiditas arca.
status
on_hold
startDate
2025-09-24
dueDate
ownerUserId
Douglas Frami @douglas.frami
createdAt
updatedAt

Component variants

Related

Request

curl example

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

JavaScript example

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

Python example

import requests

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

Response

{
  "id": 64,
  "orgId": 21,
  "teamId": 65,
  "name": "Data Pipeline",
  "slug": "toy-and-sons-data-pipeline",
  "description": "Decipio cupiditas arca.",
  "status": "on_hold",
  "startDate": "2025-09-24",
  "dueDate": null,
  "ownerUserId": 148,
  "createdAt": "2025-10-13T17:39:58.448Z",
  "updatedAt": "2025-12-23T08:47:11.567Z"
}