example-data.com
Menu
Browse docs and collections

Overview

tasks / #601

Remove error handling

projectId
projects/73
assigneeUserId
Jonathan Howe @jonathan_howe77
title
Remove error handling
description
Volubilis vinculum laboriosam deporto cibo currus antea alo.
status
todo
priority
normal
dueDate
2026-07-15
createdAt
updatedAt

Component variants

Related

Request

curl example

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

JavaScript example

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

Python example

import requests

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

Response

{
  "id": 601,
  "projectId": 73,
  "assigneeUserId": 150,
  "title": "Remove error handling",
  "description": "Volubilis vinculum laboriosam deporto cibo currus antea alo.",
  "status": "todo",
  "priority": "normal",
  "dueDate": "2026-07-15",
  "createdAt": "2026-03-03T22:23:39.013Z",
  "updatedAt": "2026-05-07T22:16:24.431Z"
}