example-data.com
Menu
Browse docs and collections

Overview

tasks / #470

Optimize email notifications

projectId
projects/58
assigneeUserId
Beau Stiedemann @beau.stiedemann
title
Optimize email notifications
description
Nisi culpa vitiosus velit supellex libero conspergo terminatio sopor tollo.
status
todo
priority
normal
dueDate
createdAt
updatedAt

Component variants

Related

Request

curl example

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

JavaScript example

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

Python example

import requests

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

Response

{
  "id": 470,
  "projectId": 58,
  "assigneeUserId": 64,
  "title": "Optimize email notifications",
  "description": "Nisi culpa vitiosus velit supellex libero conspergo terminatio sopor tollo.",
  "status": "todo",
  "priority": "normal",
  "dueDate": null,
  "createdAt": "2025-06-10T08:49:47.916Z",
  "updatedAt": "2026-01-29T08:07:56.653Z"
}