example-data.com
Menu
Browse docs and collections

Overview

tasks / #712

Fix search functionality

projectId
projects/84
assigneeUserId
Ericka DuBuque @ericka.dubuque
title
Fix search functionality
description
Eos ambitus cibus mollitia terminatio aliquid ascit ait auctor adaugeo.
status
in_progress
priority
low
dueDate
2026-07-11
createdAt
updatedAt

Component variants

Related

Request

curl example

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

JavaScript example

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

Python example

import requests

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

Response

{
  "id": 712,
  "projectId": 84,
  "assigneeUserId": 23,
  "title": "Fix search functionality",
  "description": "Eos ambitus cibus mollitia terminatio aliquid ascit ait auctor adaugeo.",
  "status": "in_progress",
  "priority": "low",
  "dueDate": "2026-07-11",
  "createdAt": "2025-11-04T14:50:12.664Z",
  "updatedAt": "2026-05-13T05:28:44.140Z"
}