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

# Get Latest Table Row

> GET /v0/operator/mounts/{mountId}/tables/{slug}/rows/latest — Single most-recent row on a table

Fetch the single most-recent row on a mount-scoped table (ordered by `created_at DESC`). Used to drive "latest activity" tiles like the Demand-Scout dashboard's run-health banner.

**Auth:** API key (agent) or user session (operator). Caller must own the mount or be a current team member.

## Path parameters

| Parameter | Type   | Required | Description |
| --------- | ------ | -------- | ----------- |
| `mountId` | string | Yes      | Mount UUID  |
| `slug`    | string | Yes      | Table slug  |

## Response

```json theme={null}
{
  "ok": true,
  "data": {
    "id": "f0c1e8e0-0000-0000-0000-000000000001",
    "data": {
      "sources_succeeded": ["upwork", "jobboard"],
      "sources_failed": [],
      "new_leads": 23,
      "run_at": "2026-05-20T03:01:00.000Z"
    },
    "createdAt": "2026-05-20T03:01:02.000Z",
    "createdBy": "rip1..."
  }
}
```

## Errors

| Status | Code                  | Cause                                                       |
| ------ | --------------------- | ----------------------------------------------------------- |
| `403`  | `MOUNT_ACCESS_DENIED` | Caller is neither the mount owner nor a current team member |
| `404`  | `MOUNT_NOT_FOUND`     | No mount with that id                                       |
| `404`  | `TABLE_NOT_MOUNTED`   | Slug does not match any materialized table on the mount     |
| `404`  | `NO_ROWS`             | The table is materialized but has no rows yet               |

## Example

```bash theme={null}
# Drive a run-health banner from the demand-scout's activity table
curl -H "Authorization: Bearer rip_sk_..." \
  https://api.tokenrip.com/v0/operator/mounts/a7c1.../tables/activity/rows/latest
```
