example-data.com
Menu
Browse docs and collections

Overview

tasks / #353

Configure data export

projectId
projects/43
assigneeUserId
Kenya Abshire @kenya.abshire
title
Configure data export
description
Cura communis eius ter abduco barba audax.
status
blocked
priority
normal
dueDate
2026-07-05
createdAt
updatedAt

Component variants

Related

Request

curl example

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

JavaScript example

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

Python example

import requests

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

Response

{
  "id": 353,
  "projectId": 43,
  "assigneeUserId": 18,
  "title": "Configure data export",
  "description": "Cura communis eius ter abduco barba audax.",
  "status": "blocked",
  "priority": "normal",
  "dueDate": "2026-07-05",
  "createdAt": "2026-01-01T12:17:03.799Z",
  "updatedAt": "2026-03-31T21:32:49.911Z"
}