example-data.com
Menu
Browse docs and collections

Overview

tasks / #540

Integrate caching layer

projectId
projects/67
assigneeUserId
Terence Lemke @terence.lemke85
title
Integrate caching layer
description
Ater argumentum vitae tabesco textor surculus sub sol thema talus.
status
blocked
priority
normal
dueDate
createdAt
updatedAt

Component variants

Related

Request

curl example

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

JavaScript example

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

Python example

import requests

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

Response

{
  "id": 540,
  "projectId": 67,
  "assigneeUserId": 74,
  "title": "Integrate caching layer",
  "description": "Ater argumentum vitae tabesco textor surculus sub sol thema talus.",
  "status": "blocked",
  "priority": "normal",
  "dueDate": null,
  "createdAt": "2026-01-11T06:52:12.036Z",
  "updatedAt": "2026-04-10T12:36:48.775Z"
}