example-data.com
Menu
Browse docs and collections

Overview

tasks / #675

Refactor pagination

projectId
projects/81
assigneeUserId
title
Refactor pagination
description
Denuncio viriliter clam bonus.
status
blocked
priority
high
dueDate
2026-08-08
createdAt
updatedAt

Component variants

Related

References

Request

curl example

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

JavaScript example

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

Python example

import requests

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

Response

{
  "id": 675,
  "projectId": 81,
  "assigneeUserId": null,
  "title": "Refactor pagination",
  "description": "Denuncio viriliter clam bonus.",
  "status": "blocked",
  "priority": "high",
  "dueDate": "2026-08-08",
  "createdAt": "2026-01-06T14:38:10.466Z",
  "updatedAt": "2026-04-02T00:55:04.252Z"
}