example-data.com
Menu
Browse docs and collections

Overview

tasks / #242

Refactor performance metrics

projectId
projects/30
assigneeUserId
Arnaldo Friesen @arnaldo_friesen78
title
Refactor performance metrics
description
Harum calamitas calculus.
status
blocked
priority
low
dueDate
createdAt
updatedAt

Component variants

Related

Request

curl example

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

JavaScript example

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

Python example

import requests

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

Response

{
  "id": 242,
  "projectId": 30,
  "assigneeUserId": 113,
  "title": "Refactor performance metrics",
  "description": "Harum calamitas calculus.",
  "status": "blocked",
  "priority": "low",
  "dueDate": null,
  "createdAt": "2025-08-31T23:11:35.916Z",
  "updatedAt": "2026-01-21T10:13:21.286Z"
}