> ## 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: Reverse Phone Search

> Find all people associated with a phone number. Includes SDK V2 guidance, input constraints, response fields, and Deepline credit cost.

Find all people associated with a phone number.

<Info>
  Tool ID: `enformion_reverse_phone_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_reverse_phone_search',
  {
    "phone": "+14155550123"
  },
);

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

### CLI

```bash theme={null}
deepline tools execute enformion_reverse_phone_search --input '{
  "phone": "+14155550123"
}' --json
```

## Example response

The SDK exposes this shape at `result.toolResponse.raw`. Values below are representative.

```json theme={null}
{
  "reversePhoneRecords": [
    {
      "phone": "+14155550123",
      "phoneNumber": "+14155550123"
    }
  ],
  "isError": true
}
```

Use `deepline tools get enformion_reverse_phone_search --json` for the latest machine-readable contract.

## Input reference

Enformion Reverse Phone Search (galaxy-search-type: ReversePhone). Returns all people associated with a phone number, including historical associations. Treat results as candidate identities, not proof of the current owner.

| Name                       | Type      | Required | Default | Details                                                                |
| -------------------------- | --------- | -------- | ------- | ---------------------------------------------------------------------- |
| `payload.phone`            | `string`  | Yes      | —       | Phone number to search (for example, 212-555-0100). 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 Reverse Phone Search (galaxy-search-type: ReversePhone). Returns all people associated with a phone number, including historical associations. Treat results as candidate identities, not proof of the current owner.",
    "properties": {
      "phone": {
        "type": "string",
        "description": "Phone number to search (for example, 212-555-0100).",
        "minLength": 1
      },
      "page": {
        "type": "integer",
        "default": 1,
        "minimum": 1
      },
      "results_per_page": {
        "type": "integer",
        "default": 10,
        "minimum": 1,
        "maximum": 50
      }
    },
    "required": [
      "phone"
    ],
    "additionalProperties": false
  }
  ```
</details>

## Output reference

| Name                                       | Type      | Required | Default | Details |
| ------------------------------------------ | --------- | -------- | ------- | ------- |
| `result.reversePhoneRecords`               | `array`   | Yes      | —       | —       |
| `result.reversePhoneRecords[].phone`       | `string`  | Yes      | —       | —       |
| `result.reversePhoneRecords[].phoneNumber` | `string`  | Yes      | —       | —       |
| `result.isError`                           | `boolean` | Yes      | —       | —       |

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

  ### Output JSON Schema

  ```json theme={null}
  {
    "type": "object",
    "properties": {
      "reversePhoneRecords": {
        "type": "array",
        "items": {
          "type": "object",
          "properties": {
            "phone": {
              "type": "string"
            },
            "phoneNumber": {
              "type": "string"
            }
          },
          "required": [
            "phone",
            "phoneNumber"
          ],
          "additionalProperties": true
        }
      },
      "isError": {
        "type": "boolean"
      }
    },
    "required": [
      "reversePhoneRecords",
      "isError"
    ],
    "additionalProperties": true
  }
  ```
</details>

## Deepline cost

* Pricing model: `per_result` (per result).
* Estimated Deepline credits: `0.7` 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)
