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

# Search template groups

> Search template groups with advanced filters.

Search template groups by name, code, or customs office. This uses the same endpoint as listing groups, with a `search` query parameter.

### Query parameters

<ParamField query="search" type="string">
  Search term to match template group names, codes, or customs office codes.
</ParamField>

<ParamField query="page" type="integer" default="1">
  Page number.
</ParamField>

<ParamField query="limit" type="integer" default="20">
  Items per page limit.
</ParamField>

<ResponseExample>
  ```json 200 OK theme={null}
  {
    "page": 1,
    "itemsPerPage": 20,
    "result": [
      {
        "id": 1,
        "name": "Default Import Group",
        "code": "IMP-DEFAULT",
        "isDefault": true,
        "companyId": 1
      }
    ]
  }
  ```
</ResponseExample>
