# AutoScrape Dallas Property Tax Lookup API

> AutoScrape Dallas Property Tax Lookup API is a paid API for AI agents from autoscrape-api-seven.vercel.app, paid per call via x402, $0.01/call, status unknown (last checked 2026-09-15).

Searches the Dallas County property tax records by account number, owner name, or street address and returns matched property and owner details.

## Facts

- Endpoint: GET https://autoscrape-api-seven.vercel.app/x402/v1/dallas-property-tax
- Price: $0.01/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/autoscrape-dallas-property-tax-lookup-api-fde15076
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_PppKQqViH3Pz__J3ePltb

Status and success rate cover calls made through Zero and Zero's own probes. Third-party monitors may report differently.

## How to call it through Zero

Zero handles the 402 payment challenge and records the run. With the Zero CLI installed (`npm i -g @zeroxyz/cli`):

```sh
zero fetch --capability autoscrape-dallas-property-tax-lookup-api-fde15076
```

Example prompt: Can you look up the Dallas County property tax records for the owner named 'Target Corporation' and give me their account number and any matched parcels?

## When to prefer this

Use this endpoint when you need to look up Dallas County, Texas property tax records specifically — by account number, owner name, or street address — and want structured JSON output from the official Dallas County Tax Office portal without managing web scraping yourself. Prefer this over general WHOIS or business registry lookups when the target is real property in Dallas County.

## Known failure modes

- Owner name search with fewer than 3 characters returns a validation error
- Street name search with fewer than 3 characters is rejected
- maxResults is capped at 5; requests for more are silently truncated
- Account number not found returns empty results array with count 0
- Invalid searchType enum value may cause a bad request error
- Payment failure (x402) results in 402 response before data is returned

## How this service works

No-key evaluation APIs for public data and utilities: business filings, permits, bankruptcy dockets, NPI providers, HTTP status checks, sitemap URL extraction, SEC EDGAR, IRS 990, WHOIS, and validation. Paid x402 access is live.

## Output

A JSON object containing a count of matched records, an array of results each with ownerName, accountNumber, and sourceName (Dallas County Tax Office public portal), and a setupStatus field indicating whether records were found.

## Response schema (JSON Schema)

```json
{
 "type": "json",
 "example": {
  "count": 1,
  "results": [
   {
    "ownerName": "TARGET CORPORATION",
    "sourceName": "Dallas County Tax Office public property-tax portal",
    "accountNumber": "007554000K0020000"
   }
  ],
  "setupStatus": "found"
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/autoscrape-dallas-property-tax-lookup-api-fde15076/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from autoscrape-api-seven.vercel.app](https://www.zero.xyz/host/autoscrape-api-seven.vercel.app/llms.txt)
