example-data.com
Menu
Browse docs and collections

Overview

tasks / #95

Review file uploads

projectId
projects/13
assigneeUserId
Vidal Parker @vidal_parker12
title
Review file uploads
description
Solvo cernuus clibanus volutabrum tracto ventus terreo aer comis dapifer.
status
todo
priority
urgent
dueDate
2026-05-19
createdAt
updatedAt

Component variants

Related

Request

curl example

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

JavaScript example

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

Python example

import requests

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

Response

{
  "id": 95,
  "projectId": 13,
  "assigneeUserId": 203,
  "title": "Review file uploads",
  "description": "Solvo cernuus clibanus volutabrum tracto ventus terreo aer comis dapifer.",
  "status": "todo",
  "priority": "urgent",
  "dueDate": "2026-05-19",
  "createdAt": "2025-06-21T10:37:53.719Z",
  "updatedAt": "2025-10-24T00:38:47.903Z"
}