> ## Documentation Index
> Fetch the complete documentation index at: https://schedy.mintlify.site/llms.txt
> Use this file to discover all available pages before exploring further.

# Get a task

> GET /tasks/{id} - fetch a single task with its status, attempts, and finished_at.

```
GET /tasks/{id}
```

Returns a single task including its `status`, `attempts`, and `finished_at`. Responds `404 Not Found` if the id is unknown.

```bash theme={null}
curl http://localhost:8080/tasks/b1e2c3... -H "X-API-Key: your-secret"
```
