example-data.com
Menu
Browse docs and collections

Overview

tasks / #220

Investigate analytics tracking

projectId
projects/28
assigneeUserId
title
Investigate analytics tracking
description
Timor velum ab pax tergo vilis virtus curso amplitudo succedo.
status
blocked
priority
high
dueDate
2026-04-25
createdAt
updatedAt

Component variants

Related

References

Request

curl example

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

JavaScript example

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

Python example

import requests

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

Response

{
  "id": 220,
  "projectId": 28,
  "assigneeUserId": null,
  "title": "Investigate analytics tracking",
  "description": "Timor velum ab pax tergo vilis virtus curso amplitudo succedo.",
  "status": "blocked",
  "priority": "high",
  "dueDate": "2026-04-25",
  "createdAt": "2026-04-23T23:56:56.964Z",
  "updatedAt": "2026-05-11T20:28:50.643Z"
}