example-data.com
Menu
Browse docs and collections

Overview

tasks / #320

Test search functionality

projectId
projects/39
assigneeUserId
Alex Lang @alex_lang85
title
Test search functionality
description
Nihil capitulus sunt creta.
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/320" \
  -H "Accept: application/json"

JavaScript example

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

Python example

import requests

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

Response

{
  "id": 320,
  "projectId": 39,
  "assigneeUserId": 163,
  "title": "Test search functionality",
  "description": "Nihil capitulus sunt creta.",
  "status": "in_progress",
  "priority": "low",
  "dueDate": "2026-07-11",
  "createdAt": "2026-03-14T01:59:00.140Z",
  "updatedAt": "2026-05-20T14:01:57.218Z"
}