example-data.com
Menu
Browse docs and collections

Overview

tasks / #329

Investigate caching layer

projectId
projects/40
assigneeUserId
Lamont Huel @lamont.huel
title
Investigate caching layer
description
Sponte confido vix vehemens atrocitas defleo.
status
in_review
priority
low
dueDate
createdAt
updatedAt

Component variants

Related

Request

curl example

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

JavaScript example

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

Python example

import requests

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

Response

{
  "id": 329,
  "projectId": 40,
  "assigneeUserId": 69,
  "title": "Investigate caching layer",
  "description": "Sponte confido vix vehemens atrocitas defleo.",
  "status": "in_review",
  "priority": "low",
  "dueDate": null,
  "createdAt": "2025-07-17T08:43:23.835Z",
  "updatedAt": "2025-09-01T02:37:57.136Z"
}