example-data.com
Menu
Browse docs and collections

Overview

tasks / #56

Integrate UI component

projectId
projects/9
assigneeUserId
Karolann Legros @karolann_legros
title
Integrate UI component
description
Earum defetiscor accendo contego suffragium vorago tristis sperno.
status
done
priority
high
dueDate
createdAt
updatedAt

Component variants

Related

Request

curl example

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

JavaScript example

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

Python example

import requests

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

Response

{
  "id": 56,
  "projectId": 9,
  "assigneeUserId": 246,
  "title": "Integrate UI component",
  "description": "Earum defetiscor accendo contego suffragium vorago tristis sperno.",
  "status": "done",
  "priority": "high",
  "dueDate": null,
  "createdAt": "2025-08-01T13:41:31.615Z",
  "updatedAt": "2025-10-13T18:19:27.136Z"
}