example-data.com
Menu
Browse docs and collections

Overview

tasks / #79

Investigate performance metrics

projectId
projects/12
assigneeUserId
Lazaro Rath @lazaro.rath42
title
Investigate performance metrics
description
Adversus valde paens accusamus umerus uxor.
status
todo
priority
normal
dueDate
createdAt
updatedAt

Component variants

Related

Request

curl example

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

JavaScript example

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

Python example

import requests

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

Response

{
  "id": 79,
  "projectId": 12,
  "assigneeUserId": 102,
  "title": "Investigate performance metrics",
  "description": "Adversus valde paens accusamus umerus uxor.",
  "status": "todo",
  "priority": "normal",
  "dueDate": null,
  "createdAt": "2025-09-18T19:38:14.381Z",
  "updatedAt": "2026-04-18T04:37:41.928Z"
}