example-data.com
Menu
Browse docs and collections

Overview

tasks / #539

Review performance metrics

projectId
projects/67
assigneeUserId
title
Review performance metrics
description
Tollo aranea timidus perspiciatis vulgivagus villa tempora basium sint.
status
in_progress
priority
high
dueDate
createdAt
updatedAt

Component variants

Related

References

Request

curl example

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

JavaScript example

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

Python example

import requests

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

Response

{
  "id": 539,
  "projectId": 67,
  "assigneeUserId": null,
  "title": "Review performance metrics",
  "description": "Tollo aranea timidus perspiciatis vulgivagus villa tempora basium sint.",
  "status": "in_progress",
  "priority": "high",
  "dueDate": null,
  "createdAt": "2025-07-29T16:06:07.122Z",
  "updatedAt": "2026-02-11T19:17:37.572Z"
}