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

# Enformion: Property V2 Search

> Search property records by free-form text, TahoeId, or structured address. Includes SDK V2 examples, input constraints, response fields, and Deepline cost.

Search property records by free-form text, TahoeId, or structured address.

<Info>
  Tool ID: `enformion_property_v2_search`
</Info>

## Run this action

Use the TypeScript SDK for a single call. Put `ctx.tools.execute(...)` inside a Play when the call should be durable, scheduled, or run across a CSV.

```ts theme={null}
import { Deepline } from 'deepline';

const deepline = await Deepline.connect();
const result = await deepline.tools.execute(
  'enformion_property_v2_search',
  {
    "free_form_search": "software companies hiring engineers",
    "tahoe_id": "tahoe_123",
    "address_line1": "example"
  },
);

console.log(result.toolResponse.raw);
```

### CLI

```bash theme={null}
deepline tools execute enformion_property_v2_search --input '{
  "free_form_search": "software companies hiring engineers",
  "tahoe_id": "tahoe_123",
  "address_line1": "example"
}' --json
```

## Input reference

Enformion Property V2 Search (galaxy-search-type: PropertyV2). Searches property records by free-form text, TahoeId, or address fields.

| Name                       | Type      | Required | Default | Details                  |
| -------------------------- | --------- | -------- | ------- | ------------------------ |
| `payload.free_form_search` | `string`  | No       | —       | Minimum length: 1.       |
| `payload.tahoe_id`         | `string`  | No       | —       | Minimum length: 1.       |
| `payload.address_line1`    | `string`  | No       | —       | Minimum length: 1.       |
| `payload.address_line2`    | `string`  | No       | —       | Minimum length: 1.       |
| `payload.city`             | `string`  | No       | —       | Minimum length: 1.       |
| `payload.state`            | `string`  | No       | —       | Minimum length: 1.       |
| `payload.zip`              | `string`  | No       | —       | Minimum length: 1.       |
| `payload.page`             | `integer` | No       | `1`     | Minimum: 1.              |
| `payload.results_per_page` | `integer` | No       | `10`    | Minimum: 1. Maximum: 50. |

<details>
  <summary>Show raw input schema</summary>

  ### Input JSON Schema

  ```json theme={null}
  {
    "type": "object",
    "description": "Enformion Property V2 Search (galaxy-search-type: PropertyV2). Searches property records by free-form text, TahoeId, or address fields.",
    "properties": {
      "free_form_search": {
        "type": "string",
        "minLength": 1
      },
      "tahoe_id": {
        "type": "string",
        "minLength": 1
      },
      "address_line1": {
        "type": "string",
        "minLength": 1
      },
      "address_line2": {
        "type": "string",
        "minLength": 1
      },
      "city": {
        "type": "string",
        "minLength": 1
      },
      "state": {
        "type": "string",
        "minLength": 1
      },
      "zip": {
        "type": "string",
        "minLength": 1
      },
      "page": {
        "type": "integer",
        "default": 1,
        "minimum": 1
      },
      "results_per_page": {
        "type": "integer",
        "default": 10,
        "minimum": 1,
        "maximum": 50
      }
    },
    "additionalProperties": false
  }
  ```
</details>

## Output reference

The static output schema is not available. Run `deepline tools get enformion_property_v2_search --json` for the live contract.

## Deepline cost

* Pricing model: `per_result` (per result).
* Estimated Deepline credits: `1.68` per pricing unit.

## Related documentation

* [Enformion provider guide](/docs/providers/enformion/guide)
* [SDK V2 quickstart](/docs/sdk-v2/quickstart)
* [SDK reference](/docs/sdk-v2/sdk-reference)
* [Run tools across a CSV](/docs/sdk-v2/batch-csv)
