example-data.com
Menu
Browse docs and collections

Overview

tasks / #382

Investigate analytics tracking

projectId
projects/46
assigneeUserId
Beau Stiedemann @beau.stiedemann
title
Investigate analytics tracking
description
Thesaurus venustas ascit adversus dapifer architecto.
status
todo
priority
normal
dueDate
createdAt
updatedAt

Component variants

Related

Request

curl example

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

JavaScript example

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

Python example

import requests

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

Response

{
  "id": 382,
  "projectId": 46,
  "assigneeUserId": 64,
  "title": "Investigate analytics tracking",
  "description": "Thesaurus venustas ascit adversus dapifer architecto.",
  "status": "todo",
  "priority": "normal",
  "dueDate": null,
  "createdAt": "2025-07-06T02:46:27.372Z",
  "updatedAt": "2025-10-13T10:48:32.714Z"
}