example-data.com
Menu
Browse docs and collections

Overview

tasks / #684

Optimize UI component

projectId
projects/82
assigneeUserId
Jacynthe Sawayn @jacynthe_sawayn71
title
Optimize UI component
description
Blanditiis attonbitus arbitro attero cognomen crebro surculus averto bibo.
status
blocked
priority
normal
dueDate
2026-06-25
createdAt
updatedAt

Component variants

Related

Request

curl example

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

JavaScript example

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

Python example

import requests

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

Response

{
  "id": 684,
  "projectId": 82,
  "assigneeUserId": 146,
  "title": "Optimize UI component",
  "description": "Blanditiis attonbitus arbitro attero cognomen crebro surculus averto bibo.",
  "status": "blocked",
  "priority": "normal",
  "dueDate": "2026-06-25",
  "createdAt": "2026-02-26T09:58:37.758Z",
  "updatedAt": "2026-04-08T09:57:01.584Z"
}