example-data.com
Menu
Browse docs and collections

Overview

tasks / #154

Implement performance metrics

projectId
projects/20
assigneeUserId
Jennifer Stoltenberg @jennifer_stoltenberg
title
Implement performance metrics
description
Suppellex tunc aliquam cupiditate suggero.
status
todo
priority
high
dueDate
2026-08-18
createdAt
updatedAt

Component variants

Related

Request

curl example

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

JavaScript example

const res = await fetch(
  "https://example-data.com/api/v1/tasks/154"
);
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/154"
);
const task = (await res.json()) as Task;

Python example

import requests

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

Response

{
  "id": 154,
  "projectId": 20,
  "assigneeUserId": 25,
  "title": "Implement performance metrics",
  "description": "Suppellex tunc aliquam cupiditate suggero.",
  "status": "todo",
  "priority": "high",
  "dueDate": "2026-08-18",
  "createdAt": "2025-12-21T03:22:07.362Z",
  "updatedAt": "2026-01-12T09:30:47.847Z"
}