example-data.com
Menu
Browse docs and collections

Overview

tasks / #486

Remove analytics tracking

projectId
projects/61
assigneeUserId
title
Remove analytics tracking
description
Vel collum viridis caveo cito coma theatrum nostrum cogo.
status
todo
priority
low
dueDate
2026-05-11
createdAt
updatedAt

Component variants

Related

References

Request

curl example

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

JavaScript example

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

Python example

import requests

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

Response

{
  "id": 486,
  "projectId": 61,
  "assigneeUserId": null,
  "title": "Remove analytics tracking",
  "description": "Vel collum viridis caveo cito coma theatrum nostrum cogo.",
  "status": "todo",
  "priority": "low",
  "dueDate": "2026-05-11",
  "createdAt": "2025-11-15T12:02:41.986Z",
  "updatedAt": "2026-01-30T06:36:48.416Z"
}