> ## 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.

# Searchbug: Actions/reassigned Number

> Check the FCC Reassigned Numbers Database before dialing a number captured some time ago. Includes inputs, outputs, SDK V2 examples, and Deepline cost.

Check the FCC Reassigned Numbers Database before dialing a number captured some time ago.

<Info>
  Tool ID: `searchbug_reassigned_number`
</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(
  'searchbug_reassigned_number',
  {
    "phone": "+14155550123",
    "since_date": "2026-01-15T12:00:00Z"
  },
);

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

### CLI

```bash theme={null}
deepline tools execute searchbug_reassigned_number --input '{
  "phone": "+14155550123",
  "since_date": "2026-01-15T12:00:00Z"
}' --json
```

## Example response

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

```json theme={null}
{
  "data": {
    "Status": "example",
    "Data": {
      "PHONE": {
        "NUMBER": "example",
        "NUMBER2": "example"
      },
      "RND": {
        "STATUS": "example",
        "DATE": "2026-01-15T12:00:00Z",
        "RESULT": "example"
      }
    },
    "Error": null
  }
}
```

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

## Input reference

Check the FCC Reassigned Numbers Database to see whether a phone number was reassigned to a different subscriber after a given date.

| Name                 | Type     | Required | Default | Details                                                                                                                                                                                   |
| -------------------- | -------- | -------- | ------- | ----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- |
| `payload.phone`      | `string` | Yes      | —       | US or Canadian phone number to check. Minimum length: 1.                                                                                                                                  |
| `payload.since_date` | `string` | Yes      | —       | Date the number was last known good, as YYYY-MM-DD. The FCC database reports whether the number was reassigned after this date, so pass the date consent was captured. Minimum length: 8. |
| `payload.ref`        | `string` | No       | —       | Optional client reference for usage tracking. Minimum length: 1. Maximum length: 100.                                                                                                     |

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

  ### Input JSON Schema

  ```json theme={null}
  {
    "type": "object",
    "description": "Check the FCC Reassigned Numbers Database to see whether a phone number was reassigned to a different subscriber after a given date.",
    "properties": {
      "phone": {
        "type": "string",
        "description": "US or Canadian phone number to check.",
        "minLength": 1
      },
      "since_date": {
        "type": "string",
        "description": "Date the number was last known good, as YYYY-MM-DD. The FCC database reports whether the number was reassigned after this date, so pass the date consent was captured.",
        "minLength": 8
      },
      "ref": {
        "type": "string",
        "description": "Optional client reference for usage tracking.",
        "minLength": 1,
        "maxLength": 100
      }
    },
    "required": [
      "phone",
      "since_date"
    ],
    "additionalProperties": false
  }
  ```
</details>

## Output reference

| Name                             | Type     | Required | Default | Details |
| -------------------------------- | -------- | -------- | ------- | ------- |
| `result.data`                    | `object` | Yes      | —       | —       |
| `result.data.Status`             | `string` | Yes      | —       | —       |
| `result.data.Data`               | `object` | Yes      | —       | —       |
| `result.data.Data.PHONE`         | `object` | Yes      | —       | —       |
| `result.data.Data.PHONE.NUMBER`  | `string` | Yes      | —       | —       |
| `result.data.Data.PHONE.NUMBER2` | `string` | Yes      | —       | —       |
| `result.data.Data.RND`           | `object` | Yes      | —       | —       |
| `result.data.Data.RND.STATUS`    | `string` | Yes      | —       | —       |
| `result.data.Data.RND.DATE`      | `string` | Yes      | —       | —       |
| `result.data.Data.RND.RESULT`    | `string` | Yes      | —       | —       |
| `result.data.Error`              | `null`   | Yes      | —       | —       |

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

  ### Output JSON Schema

  ```json theme={null}
  {
    "type": "object",
    "properties": {
      "data": {
        "type": "object",
        "properties": {
          "Status": {
            "type": "string"
          },
          "Data": {
            "type": "object",
            "properties": {
              "PHONE": {
                "type": "object",
                "properties": {
                  "NUMBER": {
                    "type": "string"
                  },
                  "NUMBER2": {
                    "type": "string"
                  }
                },
                "required": [
                  "NUMBER",
                  "NUMBER2"
                ],
                "additionalProperties": true
              },
              "RND": {
                "type": "object",
                "properties": {
                  "STATUS": {
                    "type": "string"
                  },
                  "DATE": {
                    "type": "string"
                  },
                  "RESULT": {
                    "type": "string"
                  }
                },
                "required": [
                  "STATUS",
                  "DATE",
                  "RESULT"
                ],
                "additionalProperties": true
              }
            },
            "required": [
              "PHONE",
              "RND"
            ],
            "additionalProperties": true
          },
          "Error": {
            "type": "null"
          }
        },
        "required": [
          "Status",
          "Data",
          "Error"
        ],
        "additionalProperties": true
      }
    },
    "required": [
      "data"
    ],
    "additionalProperties": true
  }
  ```
</details>

## Deepline cost

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

## Related documentation

* [Searchbug provider guide](/docs/providers/searchbug/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)
