example-data.com
Menu
Browse docs and collections

Overview

tasks / #249

Add unit tests

projectId
projects/30
assigneeUserId
Mia Renner @mia.renner47
title
Add unit tests
description
Theatrum temptatio aedificium caute talus appono thalassinus.
status
in_progress
priority
urgent
dueDate
2026-07-18
createdAt
updatedAt

Component variants

Related

Request

curl example

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

JavaScript example

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

Python example

import requests

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

Response

{
  "id": 249,
  "projectId": 30,
  "assigneeUserId": 212,
  "title": "Add unit tests",
  "description": "Theatrum temptatio aedificium caute talus appono thalassinus.",
  "status": "in_progress",
  "priority": "urgent",
  "dueDate": "2026-07-18",
  "createdAt": "2025-11-12T17:05:28.360Z",
  "updatedAt": "2026-03-10T12:45:24.144Z"
}