> For the complete documentation index, see [llms.txt](https://liquiidio.gitbook.io/unity-plugin-suite/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://liquiidio.gitbook.io/unity-plugin-suite/eossharp/api-docs/api-read-methods/get_table_by_scope.md).

# GetTableByScope

**GetTableByScope**

Retrieves table scope

* Code - accountName of the contract to search for tables
* Table - table name to filter
* LowerBound - lower bound of scope, optional
* UpperBound - upper bound of scope, optional
* Limit
* Reverse - reverse result order

```csharp
var result = await eos.GetTableByScope(new GetTableByScopeRequest() {
   code = "eosio.token",
   table = "accounts"
});
```

Returns:

```csharp
class GetTableByScopeResponse
{
    List<TableByScopeResultRow> rows
    string more
}

class TableByScopeResultRow
{
    string code;
    string scope;
    string table;
    string payer;
    UInt32? count;
}
```
