example-data.com
Menu
Browse docs and collections

Overview

tasks / #652

Implement analytics tracking

projectId
projects/78
assigneeUserId
Lawrence Rogahn @lawrence_rogahn33
title
Implement analytics tracking
description
Turba depereo non approbo vae civis.
status
todo
priority
low
dueDate
2026-06-19
createdAt
updatedAt

Component variants

Related

Request

curl example

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

JavaScript example

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

Python example

import requests

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

Response

{
  "id": 652,
  "projectId": 78,
  "assigneeUserId": 245,
  "title": "Implement analytics tracking",
  "description": "Turba depereo non approbo vae civis.",
  "status": "todo",
  "priority": "low",
  "dueDate": "2026-06-19",
  "createdAt": "2025-07-15T11:23:29.796Z",
  "updatedAt": "2025-08-09T09:28:21.062Z"
}