example-data.com
Menu
Browse docs and collections

Overview

tasks / #624

Configure data validation

projectId
projects/75
assigneeUserId
Monte Botsford @monte_botsford
title
Configure data validation
description
Caries crinis modi tabernus voluptas.
status
done
priority
normal
dueDate
2026-07-17
createdAt
updatedAt

Component variants

Related

Request

curl example

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

JavaScript example

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

Python example

import requests

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

Response

{
  "id": 624,
  "projectId": 75,
  "assigneeUserId": 220,
  "title": "Configure data validation",
  "description": "Caries crinis modi tabernus voluptas.",
  "status": "done",
  "priority": "normal",
  "dueDate": "2026-07-17",
  "createdAt": "2025-09-20T00:05:03.349Z",
  "updatedAt": "2026-04-16T06:59:15.462Z"
}