example-data.com
Menu
Browse docs and collections

Overview

tasks / #634

Document search functionality

projectId
projects/76
assigneeUserId
Terence Lemke @terence.lemke85
title
Document search functionality
description
Velociter toties decretum summisse peior titulus amo.
status
todo
priority
low
dueDate
2026-06-15
createdAt
updatedAt

Component variants

Related

Request

curl example

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

JavaScript example

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

Python example

import requests

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

Response

{
  "id": 634,
  "projectId": 76,
  "assigneeUserId": 74,
  "title": "Document search functionality",
  "description": "Velociter toties decretum summisse peior titulus amo.",
  "status": "todo",
  "priority": "low",
  "dueDate": "2026-06-15",
  "createdAt": "2025-07-28T20:50:57.105Z",
  "updatedAt": "2025-12-16T08:38:08.268Z"
}