example-data.com
Menu
Browse docs and collections

Overview

tasks / #254

Investigate caching layer

projectId
projects/31
assigneeUserId
title
Investigate caching layer
description
Truculenter ex eaque alias nam stipes circumvenio.
status
in_review
priority
low
dueDate
createdAt
updatedAt

Component variants

Related

References

Request

curl example

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

JavaScript example

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

Python example

import requests

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

Response

{
  "id": 254,
  "projectId": 31,
  "assigneeUserId": null,
  "title": "Investigate caching layer",
  "description": "Truculenter ex eaque alias nam stipes circumvenio.",
  "status": "in_review",
  "priority": "low",
  "dueDate": null,
  "createdAt": "2026-02-12T12:02:14.462Z",
  "updatedAt": "2026-04-12T12:05:48.369Z"
}