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

# Instantly Lead List Operations: Inputs, Cost & CLI Example

> Listing Instantly lead lists with optional filters. Includes inputs, outputs, pricing notes, Deepline CLI examples, and GTM automation guidance.

## Run in Enrichment Spreadsheet

<Info>
  Use this function as a column step in `deepline enrich`.
</Info>

```bash theme={null}
deepline enrich --input leads.csv --output leads.enriched.csv --with 'result=instantly_list_lead_lists:{}' --json
```

<Tip>
  Map payload values to spreadsheet columns with `{{column_name}}` placeholders.
</Tip>

## Input Schema

| Name                          | Type      | Required | Default | Description |
| ----------------------------- | --------- | -------- | ------- | ----------- |
| `payload.limit`               | `integer` | No       |         |             |
| `payload.starting_after`      | `string`  | No       |         |             |
| `payload.has_enrichment_task` | `boolean` | No       |         |             |
| `payload.search`              | `string`  | No       |         |             |

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

  ### Input JSON Schema

  ```json theme={null}
  {
    "type": "object",
    "description": "List Instantly lead lists.",
    "properties": {
      "limit": {
        "type": "integer",
        "minimum": 1,
        "maximum": 100
      },
      "starting_after": {
        "type": "string",
        "minLength": 1
      },
      "has_enrichment_task": {
        "type": "boolean"
      },
      "search": {
        "type": "string",
        "minLength": 1
      }
    },
    "additionalProperties": false
  }
  ```
</details>

## Output Schema

Output schema is not available yet.

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

  ### Output JSON Schema

  ```json theme={null}
  {
    "description": "Raw Instantly list lead lists response."
  }
  ```
</details>

## Advanced: Direct CLI

<Info>
  Use direct execution for single payload debugging.
</Info>

```bash theme={null}
deepline tools execute instantly_list_lead_lists --payload '{}' --json
```

### CLI flags

| Flag                        | Description                                         |
| --------------------------- | --------------------------------------------------- |
| `--json`                    | Print machine-readable output.                      |
| `--wait`                    | Wait for terminal provider status when supported.   |
| `--debug`                   | Enable wait mode with additional status/log output. |
| `--wait-timeout SECONDS`    | Max seconds to wait in wait mode.                   |
| `--poll-interval SECONDS`   | Polling interval in seconds during wait mode.       |
| `--timeout SECONDS`         | Request timeout in seconds.                         |
| `--connect-timeout SECONDS` | Connection timeout in seconds.                      |

## Provider API Context

<details>
  <summary>Show provider reference (optional)</summary>

  ```md theme={null}
  > A list used to store leads

  Manage lead lists used to organize and store leads. These endpoints allow you to create, list, retrieve, update, and delete lead lists, as well as get verification statistics for a specific list.

  ## Related schemas

  * [Lead List](/api-reference/schemas/lead-list) — field reference for lead list objects

  ## Endpoints

  | Method | Endpoint                                     | Description                                 |
  | ------ | -------------------------------------------- | ------------------------------------------- |
  | POST   | `/api/v2/lead-lists`                         | Create lead list                            |
  | GET    | `/api/v2/lead-lists`                         | List lead list                              |
  | GET    | `/api/v2/lead-lists/{id}`                    | Get lead list                               |
  | PATCH  | `/api/v2/lead-lists/{id}`                    | Patch lead list                             |
  | DELETE | `/api/v2/lead-lists/{id}`                    | Delete lead list                            |
  | GET    | `/api/v2/lead-lists/{id}/verification-stats` | Get verification statistics for a lead list |

  ## 107. Lead

  Source: https://developer.instantly.ai/api-reference/groups/lead.md
  ```
</details>

## Cost

* Pricing model: `fixed` (per call).
* Estimated Deepline credits: `0` per pricing unit.
* Provider-native pricing may still exist outside Deepline credit billing.
* Billing mode: `no_bill`.
