example-data.com
Menu
Browse docs and collections

Overview

tasks / #592

Deploy search functionality

projectId
projects/72
assigneeUserId
Earlene Wisozk @earlene.wisozk
title
Deploy search functionality
description
Vulpes suspendo capto adfero thesis certus communis corrupti adaugeo.
status
todo
priority
normal
dueDate
2026-06-23
createdAt
updatedAt

Component variants

Related

Request

curl example

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

JavaScript example

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

Python example

import requests

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

Response

{
  "id": 592,
  "projectId": 72,
  "assigneeUserId": 216,
  "title": "Deploy search functionality",
  "description": "Vulpes suspendo capto adfero thesis certus communis corrupti adaugeo.",
  "status": "todo",
  "priority": "normal",
  "dueDate": "2026-06-23",
  "createdAt": "2025-11-20T03:44:03.916Z",
  "updatedAt": "2026-01-18T12:36:12.320Z"
}