example-data.com
Menu
Browse docs and collections

Overview

tasks / #526

Add user authentication

projectId
projects/65
assigneeUserId
Queen Lubowitz @queen.lubowitz76
title
Add user authentication
description
Ara verus curvo tantillus asperiores vacuus.
status
blocked
priority
normal
dueDate
2026-08-18
createdAt
updatedAt

Component variants

Related

Request

curl example

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

JavaScript example

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

Python example

import requests

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

Response

{
  "id": 526,
  "projectId": 65,
  "assigneeUserId": 28,
  "title": "Add user authentication",
  "description": "Ara verus curvo tantillus asperiores vacuus.",
  "status": "blocked",
  "priority": "normal",
  "dueDate": "2026-08-18",
  "createdAt": "2026-05-10T15:45:12.617Z",
  "updatedAt": "2026-05-11T18:23:37.195Z"
}