Retrieve a single row from a table.
const row = await client.tables.getRow("tbl_abc123", "row_xyz789"); console.log(row.data.name); console.log(row.data.price); console.log(row.is_edited);
{ "id": "row_abc123", "row_index": 0, "data": { "product_name": "iPhone 15 Pro", "price": 999, "description": "Latest Apple smartphone" }, "validation_status": null, "validation_errors": null, "enhancement_status": null, "is_edited": false, "created_at": "2025-03-10T14:30:00.000Z" }