# Find a Texas sales tax permit holder

**Use case:** 

Every active Texas sales-tax permit held by a business matching a name - multiple outlets, each with its registered and outlet address.

## Input

```json
{
  "taxpayerNumber": "",
  "name": "WHATABURGER",
  "city": "",
  "zip": "",
  "county": "",
  "countyCode": "",
  "naicsCode": "",
  "inCityLimits": "",
  "issuedFrom": "",
  "issuedTo": "",
  "firstSalesFrom": "",
  "firstSalesTo": "",
  "aggregate": false,
  "groupBy": "countyCode",
  "maxResults": 200
}
```

## Output

```json
{
  "taxpayerId": {
    "label": "Taxpayer id"
  },
  "taxpayerName": {
    "label": "Taxpayer name"
  },
  "outletName": {
    "label": "Outlet name"
  },
  "outletAddress": {
    "label": "Outlet address"
  },
  "outletCity": {
    "label": "Outlet city"
  },
  "outletZip": {
    "label": "Outlet zip"
  },
  "outletCountyCode": {
    "label": "Outlet county code"
  },
  "outletCountyName": {
    "label": "Outlet county name"
  },
  "naicsCode": {
    "label": "Naics code"
  },
  "inCityLimits": {
    "label": "In city limits"
  },
  "permitIssueDate": {
    "label": "Permit issue date"
  },
  "firstSalesDate": {
    "label": "First sales date"
  },
  "sourceUpdatedAt": {
    "label": "Source updated at"
  },
  "groupKey": {
    "label": "Group key"
  },
  "groupCount": {
    "label": "Group count"
  },
  "groupBy": {
    "label": "Group by"
  }
}
```

## About this Actor

This example demonstrates how to use [TX Sales Tax Permits - Active Permit Holders](https://apify.com/j0401/tx-sales-tax-permits.md) with a specific input configuration. Visit the [Actor detail page](https://apify.com/j0401/tx-sales-tax-permits.md) to learn more, explore other use cases, and run it yourself.


## How to integrate an Actor?

This Task's input is already configured above. Use it as-is rather than inventing a new one.

Do not guess an integration path. Every one of them is in the agent quickstart at https://apify.com/agents.md: the Apify MCP server, Agent Skills with the Apify CLI, the JavaScript and Python clients, the REST API, and the account-free path for an agent with no human to sign in. It also carries the rule on stating cost before the first paid run.

For full API examples (JavaScript, Python, CLI, MCP, OpenAPI), see this Task's Actor page: https://apify.com/j0401/tx-sales-tax-permits.md

Each client library has reference documentation the quickstart does not restate: [JavaScript/TypeScript](https://docs.apify.com/api/client/js/docs.md) (`npm install apify-client`) and [Python](https://docs.apify.com/api/client/python/docs.md) (`pip install apify-client`).
