example-data.com
Menu
Browse docs and collections

Overview

tasks / #50

Test dashboard widget

projectId
projects/7
assigneeUserId
Britney Haag @britney.haag
title
Test dashboard widget
description
Desipio coma laborum terreo chirographum solvo viridis depromo solium trepide.
status
done
priority
normal
dueDate
2026-07-21
createdAt
updatedAt

Component variants

Related

Request

curl example

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

JavaScript example

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

Python example

import requests

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

Response

{
  "id": 50,
  "projectId": 7,
  "assigneeUserId": 133,
  "title": "Test dashboard widget",
  "description": "Desipio coma laborum terreo chirographum solvo viridis depromo solium trepide.",
  "status": "done",
  "priority": "normal",
  "dueDate": "2026-07-21",
  "createdAt": "2025-11-27T18:29:34.756Z",
  "updatedAt": "2026-02-28T03:24:54.200Z"
}