example-data.com

projects / #17

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
49
createdAt
updatedAt

Component variants

Related

curl -sS \
  "https://example-data.com/api/v1/projects/17" \
  -H "Accept: application/json"
const res = await fetch(
  "https://example-data.com/api/v1/projects/17"
);
const project = await res.json();
import type { Project } from "https://example-data.com/types/projects.d.ts";

const res = await fetch(
  "https://example-data.com/api/v1/projects/17"
);
const project = (await res.json()) as Project;
import requests

res = requests.get(
    "https://example-data.com/api/v1/projects/17"
)
project = res.json()
{
  "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"
}
Draftbit