example-data.com
Menu
Browse docs and collections

Overview

projects / #6

API Migration

orgId
Cremin - Kautzer
teamId
teams/6
name
API Migration
slug
cremin-kautzer-api-migration
description
Perspiciatis sodalitas theatrum convoco acervus cohibeo conqueror.
status
active
startDate
2025-12-02
dueDate
2026-06-03
ownerUserId
Pinkie Denesik @pinkie_denesik32
createdAt
updatedAt

Component variants

Related

Request

curl example

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

JavaScript example

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

Python example

import requests

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

Response

{
  "id": 6,
  "orgId": 2,
  "teamId": 6,
  "name": "API Migration",
  "slug": "cremin-kautzer-api-migration",
  "description": "Perspiciatis sodalitas theatrum convoco acervus cohibeo conqueror.",
  "status": "active",
  "startDate": "2025-12-02",
  "dueDate": "2026-06-03",
  "ownerUserId": 88,
  "createdAt": "2025-07-30T06:26:32.098Z",
  "updatedAt": "2025-07-31T14:56:36.177Z"
}