example-data.com
Menu
Browse docs and collections

Overview

tasks / #490

Investigate performance metrics

projectId
projects/61
assigneeUserId
Terence Lemke @terence.lemke85
title
Investigate performance metrics
description
Acquiro arceo atrox clarus surgo venia absens unus distinctio.
status
in_review
priority
normal
dueDate
createdAt
updatedAt

Component variants

Related

Request

curl example

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

JavaScript example

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

Python example

import requests

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

Response

{
  "id": 490,
  "projectId": 61,
  "assigneeUserId": 74,
  "title": "Investigate performance metrics",
  "description": "Acquiro arceo atrox clarus surgo venia absens unus distinctio.",
  "status": "in_review",
  "priority": "normal",
  "dueDate": null,
  "createdAt": "2025-09-10T02:24:03.115Z",
  "updatedAt": "2026-04-01T05:39:21.099Z"
}