example-data.com
Menu
Browse docs and collections

Overview

tasks / #610

Integrate performance metrics

projectId
projects/74
assigneeUserId
Hermina West @hermina.west3
title
Integrate performance metrics
description
Crustulum cura ultra verus verto ter civitas decipio carmen.
status
todo
priority
high
dueDate
2026-07-02
createdAt
updatedAt

Component variants

Related

Request

curl example

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

JavaScript example

const res = await fetch(
  "https://example-data.com/api/v1/tasks/610"
);
const task = await res.json();

TypeScript example

// Download once: mkdir -p types && curl -o types/tasks.d.ts https://example-data.com/types/tasks.d.ts
import type { Task } from "./types/tasks";

const res = await fetch(
  "https://example-data.com/api/v1/tasks/610"
);
const task = (await res.json()) as Task;

Python example

import requests

res = requests.get(
    "https://example-data.com/api/v1/tasks/610"
)
task = res.json()

Response

{
  "id": 610,
  "projectId": 74,
  "assigneeUserId": 51,
  "title": "Integrate performance metrics",
  "description": "Crustulum cura ultra verus verto ter civitas decipio carmen.",
  "status": "todo",
  "priority": "high",
  "dueDate": "2026-07-02",
  "createdAt": "2025-09-26T03:19:19.406Z",
  "updatedAt": "2026-05-10T13:52:30.124Z"
}