example-data.com
Menu
Browse docs and collections

Overview

tasks / #339

Optimize unit tests

projectId
projects/42
assigneeUserId
Autumn Bartell @autumn.bartell95
title
Optimize unit tests
description
Apostolus ullam ipsa surgo tolero rerum carpo adstringo comprehendo tolero.
status
blocked
priority
normal
dueDate
2026-07-14
createdAt
updatedAt

Component variants

Related

Request

curl example

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

JavaScript example

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

Python example

import requests

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

Response

{
  "id": 339,
  "projectId": 42,
  "assigneeUserId": 58,
  "title": "Optimize unit tests",
  "description": "Apostolus ullam ipsa surgo tolero rerum carpo adstringo comprehendo tolero.",
  "status": "blocked",
  "priority": "normal",
  "dueDate": "2026-07-14",
  "createdAt": "2025-11-07T11:23:59.247Z",
  "updatedAt": "2025-11-23T22:49:29.574Z"
}