# Travis County Nearby Property Search (TCAD) by Coordinates

> Travis County Nearby Property Search (TCAD) by Coordinates is a paid API for AI agents from x402datasource.com, paid per call via x402, $0.05/call, status down (last checked 2026-09-15).

Returns a list of Travis County, TX properties near a given latitude/longitude, including appraisal values, ownership, exemptions, and physical characteristics.

## Facts

- Endpoint: GET https://x402datasource.com/api/v1/property/tx/travis/nearby
- Price: $0.05/call
- Payment: x402
- Status: down
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/x402datasource-com-0ef70583
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap__e4Ash286Tduo8NvEbPqB

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 x402datasource-com-0ef70583
```

Example prompt: What properties does TCAD show near latitude 30.2672 and longitude -97.7431 in Travis County — I want to see who owns them, their appraised values, and any homestead exemptions.

## When to prefer this

Use this endpoint when you need to discover multiple nearby properties given only a geographic coordinate within Travis County, TX — particularly when you don't have a TCAD account number or address. Prefer it over the TCAD account-number or address-search endpoints when performing proximity analysis, neighborhood comparisons, or geospatial real estate research.

## Known failure modes

- Missing required lat or lng parameters returns a 400 validation error
- Coordinates outside Travis County boundaries may return zero results
- Payment failure or insufficient USDC balance returns a 402 Payment Required error
- Invalid coordinate types (non-numeric) cause schema validation failures
- Very rural coordinates with no nearby parcels return an empty results array

## How this service works

Pay-per-request data API for AI agents. No subscriptions, no API keys — each request is paid using the x402 protocol, settled on-chain. Real-world structured data on demand.

## Output

An array of nearby Travis County properties sorted by distance from the search center, each containing: full address, owner name, TCAD geo_id, legal description, year built, land and improvement square footage, land acreage, price per sqft, market/appraised/assessed/land/improvement values, homestead cap savings, exemptions (homestead, over-65, disabled person, disabled veteran), data year, and distance in meters. Also returns the search center coordinates, result count, and search radius in meters.

## Example request

```json
{
 "lat": 30.2672,
 "lng": -97.7431
}
```

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "$schema": "https://json-schema.org/draft/2020-12/schema",
 "required": [
  "input"
 ],
 "properties": {
  "input": {
   "type": "object",
   "required": [
    "type",
    "method"
   ],
   "properties": {
    "type": {
     "type": "string",
     "const": "http"
    },
    "method": {
     "enum": [
      "GET"
     ],
     "type": "string"
    },
    "pathParams": {
     "type": "object"
    },
    "queryParams": {
     "type": "object",
     "required": [
      "propertyId"
     ],
     "properties": {
      "propertyId": {
       "type": "string",
       "description": "County-specific property identifier — TCAD account number for Travis County (e.g. \"0100030203\"). Passed as a URL path parameter."
      }
     }
    }
   },
   "additionalProperties": false
  },
  "output": {
   "type": "object",
   "required": [
    "type"
   ],
   "properties": {
    "type": {
     "type": "string"
    },
    "example": {
     "type": "object",
     "properties": {
      "owner": {
       "type": "string",
       "description": "Property owner name."
      },
      "geo_id": {
       "type": "string",
       "description": "County-specific property identifier."
      },
      "values": {
       "type": "object",
       "description": "Property valuation details."
      },
      "address": {
       "type": "object",
       "description": "Property address details."
      },
      "property": {
       "type": "object",
       "description": "Physical property details."
      },
      "data_year": {
       "type": "integer",
       "description": "Tax year of the data."
      },
      "exemptions": {
       "type": "object",
       "description": "Tax exemption flags."
      },
      "legal_description": {
       "type": "string",
       "description": "Legal description of the property."
      }
     }
    }
   }
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "json",
 "example": {
  "owner": "DJB INVESTMENT PROPERTY LLC",
  "geo_id": "0100030203",
  "values": {
   "land": 4232160,
   "market": 4332066,
   "assessed": 4332066,
   "appraised": 4332066,
   "improvement": 99906,
   "homestead_cap_savings": 0
  },
  "address": {
   "zip": "78704",
   "city": "AUSTIN",
   "full": "1105 S LAMAR BLVD",
   "street": "1105 S LAMAR BLVD"
  },
  "property": {
   "land_sqft": 23512,
   "land_acres": 0.5399,
   "year_built": 1984,
   "price_per_sqft": 253,
   "improvement_sqft": 17100
  },
  "data_year": 2025,
  "exemptions": {
   "over_65": false,
   "homestead": false,
   "disabled_person": false,
   "disabled_veteran": false
  },
  "legal_description": "LOT 1-4 TEMPLER LOTS"
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/x402datasource-com-0ef70583/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from x402datasource.com](https://www.zero.xyz/host/x402datasource.com/llms.txt)
