example-data.com
Menu
Browse docs and collections

Overview

tasks / #469

Fix search functionality

projectId
projects/58
assigneeUserId
Mazie Douglas @mazie_douglas
title
Fix search functionality
description
Provident pauper ascisco callide amita.
status
blocked
priority
low
dueDate
2026-08-03
createdAt
updatedAt

Component variants

Related

Request

curl example

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

JavaScript example

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

Python example

import requests

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

Response

{
  "id": 469,
  "projectId": 58,
  "assigneeUserId": 89,
  "title": "Fix search functionality",
  "description": "Provident pauper ascisco callide amita.",
  "status": "blocked",
  "priority": "low",
  "dueDate": "2026-08-03",
  "createdAt": "2025-11-22T23:03:47.742Z",
  "updatedAt": "2026-03-13T16:24:00.407Z"
}