example-data.com
Menu
Browse docs and collections

Overview

tasks / #629

Investigate user authentication

projectId
projects/76
assigneeUserId
Lavonne Schmidt @lavonne.schmidt95
title
Investigate user authentication
description
Voluptatibus stultus amoveo curatio astrum.
status
in_progress
priority
high
dueDate
2026-05-21
createdAt
updatedAt

Component variants

Related

Request

curl example

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

JavaScript example

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

Python example

import requests

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

Response

{
  "id": 629,
  "projectId": 76,
  "assigneeUserId": 192,
  "title": "Investigate user authentication",
  "description": "Voluptatibus stultus amoveo curatio astrum.",
  "status": "in_progress",
  "priority": "high",
  "dueDate": "2026-05-21",
  "createdAt": "2025-12-13T15:09:38.137Z",
  "updatedAt": "2026-03-13T22:20:54.560Z"
}