example-data.com
Menu
Browse docs and collections

Overview

projects / #17

API Migration

orgId
McGlynn, Bogisich and Toy
teamId
teams/16
name
API Migration
slug
mcglynn-bogisich-and-toy-api-migration
description
Speculum suadeo auditor.
status
completed
startDate
2025-07-04
dueDate
2026-06-15
ownerUserId
Green Kozey @green_kozey22
createdAt
updatedAt

Component variants

Related

Request

curl example

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

JavaScript example

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

Python example

import requests

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

Response

{
  "id": 17,
  "orgId": 5,
  "teamId": 16,
  "name": "API Migration",
  "slug": "mcglynn-bogisich-and-toy-api-migration",
  "description": "Speculum suadeo auditor.",
  "status": "completed",
  "startDate": "2025-07-04",
  "dueDate": "2026-06-15",
  "ownerUserId": 49,
  "createdAt": "2025-07-21T06:08:51.319Z",
  "updatedAt": "2025-10-26T10:43:12.961Z"
}