example-data.com
Menu
Browse docs and collections

Overview

tasks / #243

Remove error handling

projectId
projects/30
assigneeUserId
Conrad Connelly @conrad.connelly22
title
Remove error handling
description
Ullus denique collum pel.
status
in_progress
priority
low
dueDate
createdAt
updatedAt

Component variants

Related

Request

curl example

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

JavaScript example

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

Python example

import requests

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

Response

{
  "id": 243,
  "projectId": 30,
  "assigneeUserId": 30,
  "title": "Remove error handling",
  "description": "Ullus denique collum pel.",
  "status": "in_progress",
  "priority": "low",
  "dueDate": null,
  "createdAt": "2025-06-07T01:24:33.579Z",
  "updatedAt": "2025-11-14T14:57:52.807Z"
}