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

# Amplemarket Post Companies Search: Inputs, Cost & CLI

> Search companies. Amplemarket Amplemarket Post Companies Search docs include request fields, response shape, pricing notes, and Deepline CLI examples.

## 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=amplemarket_post_companies_search:{}' --json
```

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

## Input Schema

| Name                                                        | Type      | Required | Default | Description                                                                                                                                                                                                                                                                                                                                               |
| ----------------------------------------------------------- | --------- | -------- | ------- | --------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- |
| `payload.company_names`                                     | `array`   | No       |         |                                                                                                                                                                                                                                                                                                                                                           |
| `payload.company_exclude_names`                             | `array`   | No       |         |                                                                                                                                                                                                                                                                                                                                                           |
| `payload.company_ids`                                       | `array`   | No       |         |                                                                                                                                                                                                                                                                                                                                                           |
| `payload.company_exclude_ids`                               | `array`   | No       |         |                                                                                                                                                                                                                                                                                                                                                           |
| `payload.company_locations`                                 | `array`   | No       |         |                                                                                                                                                                                                                                                                                                                                                           |
| `payload.company_exclude_locations`                         | `array`   | No       |         |                                                                                                                                                                                                                                                                                                                                                           |
| `payload.company_domains`                                   | `array`   | No       |         |                                                                                                                                                                                                                                                                                                                                                           |
| `payload.company_exclude_domains`                           | `array`   | No       |         |                                                                                                                                                                                                                                                                                                                                                           |
| `payload.company_linkedin_urls`                             | `array`   | No       |         |                                                                                                                                                                                                                                                                                                                                                           |
| `payload.company_exclude_linkedin_urls`                     | `array`   | No       |         |                                                                                                                                                                                                                                                                                                                                                           |
| `payload.company_domains_match_subsidiaries_and_affiliates` | `boolean` | No       |         |                                                                                                                                                                                                                                                                                                                                                           |
| `payload.company_focuses`                                   | `array`   | No       |         |                                                                                                                                                                                                                                                                                                                                                           |
| `payload.company_types`                                     | `array`   | No       |         |                                                                                                                                                                                                                                                                                                                                                           |
| `payload.company_sizes`                                     | `array`   | No       |         |                                                                                                                                                                                                                                                                                                                                                           |
| `payload.company_industries`                                | `array`   | No       |         | Available options: [Supported industries](/docs/api-reference/supported-industries)                                                                                                                                                                                                                                                                            |
| `payload.company_exclude_industries`                        | `array`   | No       |         | Available options: [Supported industries](/docs/api-reference/supported-industries)                                                                                                                                                                                                                                                                            |
| `payload.company_investors`                                 | `array`   | No       |         | Array of investor names. Filter for companies that have received investment by any of the specified investors.                                                                                                                                                                                                                                            |
| `payload.company_shares_investors_with`                     | `array`   | No       |         | Array of company names. Filter for companies that share one or more common investors with the specified companies.                                                                                                                                                                                                                                        |
| `payload.company_keywords`                                  | `array`   | No       |         | Keywords to search in the company description. Matches any keyword by default.                                                                                                                                                                                                                                                                            |
| `payload.company_exclude_keywords`                          | `array`   | No       |         | Keywords to exclude from the company description.                                                                                                                                                                                                                                                                                                         |
| `payload.company_revenue`                                   | `array`   | No       |         | Filter by estimated revenue range.                                                                                                                                                                                                                                                                                                                        |
| `payload.company_founded_date`                              | `object`  | No       |         | Filter by founding year range.                                                                                                                                                                                                                                                                                                                            |
| `payload.company_web_traffic_rank`                          | `object`  | No       |         | Filter by web traffic rank. Lower rank means more traffic.                                                                                                                                                                                                                                                                                                |
| `payload.job_openings`                                      | `object`  | No       |         | Filter by companies with matching open positions.                                                                                                                                                                                                                                                                                                         |
| `payload.news`                                              | `object`  | No       |         | Filter by recent company news.                                                                                                                                                                                                                                                                                                                            |
| `payload.headcount_growth`                                  | `object`  | No       |         | Filter by total headcount growth percentage over a time period.                                                                                                                                                                                                                                                                                           |
| `payload.crm_account_owner`                                 | `array`   | No       |         | Filter by CRM account owner emails. Requires a connected CRM integration (Salesforce or HubSpot). Returns an error if no owners match the provided emails.                                                                                                                                                                                                |
| `payload.company_last_funding`                              | `object`  | No       |         | Filter by last funding round.                                                                                                                                                                                                                                                                                                                             |
| `payload.company_linkedin_presence`                         | `array`   | No       |         | Filter by the company's LinkedIn follower tier. Supported values: `massive` — Massive following (100,000+ followers), `large` — Large following (10,000 - 99,999 followers), `moderate` — Moderate following (1,000 - 9,999 followers), `limited` — Limited following (1 - 999 followers), `none` — No following (0 followers). All ranges are inclusive. |
| `payload.page`                                              | `integer` | No       | `1`     |                                                                                                                                                                                                                                                                                                                                                           |
| `payload.page_size`                                         | `integer` | No       | `5`     | Number of results per page. Values greater than 50 are accepted and capped at 50.                                                                                                                                                                                                                                                                         |

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

  ### Input JSON Schema

  ```json theme={null}
  {
    "type": "object",
    "description": "Search companies",
    "properties": {
      "company_names": {
        "type": "array",
        "items": {
          "type": "string"
        }
      },
      "company_exclude_names": {
        "type": "array",
        "items": {
          "type": "string"
        }
      },
      "company_ids": {
        "type": "array",
        "items": {
          "type": "string",
          "format": "uuid"
        }
      },
      "company_exclude_ids": {
        "type": "array",
        "items": {
          "type": "string",
          "format": "uuid"
        }
      },
      "company_locations": {
        "type": "array",
        "items": {
          "type": "string"
        }
      },
      "company_exclude_locations": {
        "type": "array",
        "items": {
          "type": "string"
        }
      },
      "company_domains": {
        "type": "array",
        "items": {
          "type": "string",
          "format": "domain"
        }
      },
      "company_exclude_domains": {
        "type": "array",
        "items": {
          "type": "string",
          "format": "domain"
        }
      },
      "company_linkedin_urls": {
        "type": "array",
        "items": {
          "type": "string"
        }
      },
      "company_exclude_linkedin_urls": {
        "type": "array",
        "items": {
          "type": "string"
        }
      },
      "company_domains_match_subsidiaries_and_affiliates": {
        "type": "boolean"
      },
      "company_focuses": {
        "type": "array",
        "items": {
          "type": "string",
          "enum": [
            "b2b",
            "b2c"
          ]
        }
      },
      "company_types": {
        "type": "array",
        "items": {
          "type": "string",
          "enum": [
            "Public Company",
            "Educational",
            "Self Employed",
            "Government Agency",
            "Non Profit",
            "Self Owned",
            "Privately Held",
            "Partnership"
          ]
        }
      },
      "company_sizes": {
        "type": "array",
        "items": {
          "type": "string",
          "enum": [
            "1-10 employees",
            "11-50 employees",
            "51-200 employees",
            "201-500 employees",
            "501-1000 employees",
            "1001-5000 employees",
            "5001-10000 employees",
            "10001+ employees"
          ]
        }
      },
      "company_industries": {
        "type": "array",
        "description": "Available options: [Supported industries](/api-reference/supported-industries)",
        "items": {
          "type": "string"
        }
      },
      "company_exclude_industries": {
        "type": "array",
        "description": "Available options: [Supported industries](/api-reference/supported-industries)",
        "items": {
          "type": "string"
        }
      },
      "company_investors": {
        "type": "array",
        "description": "Array of investor names. Filter for companies that have received investment by any of the specified investors.",
        "items": {
          "type": "string"
        }
      },
      "company_shares_investors_with": {
        "type": "array",
        "description": "Array of company names. Filter for companies that share one or more common investors with the specified companies.",
        "items": {
          "type": "string"
        }
      },
      "company_keywords": {
        "type": "array",
        "description": "Keywords to search in the company description. Matches any keyword by default.",
        "items": {
          "type": "string"
        }
      },
      "company_exclude_keywords": {
        "type": "array",
        "description": "Keywords to exclude from the company description.",
        "items": {
          "type": "string"
        }
      },
      "company_revenue": {
        "type": "array",
        "description": "Filter by estimated revenue range.",
        "items": {
          "type": "string",
          "enum": [
            "$0-$1M",
            "$1M-$10M",
            "$10M-$100M",
            "$100M-$1B",
            "$1B+"
          ]
        }
      },
      "company_founded_date": {
        "type": "object",
        "description": "Filter by founding year range.",
        "properties": {
          "min": {
            "type": "integer",
            "description": "Minimum founding year"
          },
          "max": {
            "type": "integer",
            "description": "Maximum founding year"
          }
        },
        "additionalProperties": false
      },
      "company_web_traffic_rank": {
        "type": "object",
        "description": "Filter by web traffic rank. Lower rank means more traffic.",
        "properties": {
          "min": {
            "type": "integer",
            "description": "Minimum traffic rank"
          },
          "max": {
            "type": "integer",
            "description": "Maximum traffic rank"
          }
        },
        "additionalProperties": false
      },
      "job_openings": {
        "type": "object",
        "description": "Filter by companies with matching open positions.",
        "properties": {
          "titles": {
            "type": "array",
            "description": "Free-text job titles to filter by.",
            "items": {
              "type": "string"
            }
          }
        },
        "additionalProperties": false
      },
      "news": {
        "type": "object",
        "description": "Filter by recent company news.",
        "properties": {
          "categories": {
            "type": "array",
            "description": "News category slugs to filter by (e.g. hires, launches, partners_with). Defaults to all categories if omitted.",
            "items": {
              "type": "string"
            }
          },
          "range_months": {
            "type": "integer",
            "description": "Number of months to look back for news."
          }
        },
        "additionalProperties": false
      },
      "headcount_growth": {
        "type": "object",
        "description": "Filter by total headcount growth percentage over a time period.",
        "properties": {
          "growth_rates": {
            "type": "array",
            "items": {
              "type": "object",
              "properties": {
                "min": {
                  "type": "integer",
                  "description": "Minimum growth percentage"
                },
                "max": {
                  "type": "integer",
                  "description": "Maximum growth percentage"
                }
              },
              "additionalProperties": false
            }
          },
          "time_frame_in_months": {
            "type": "integer",
            "description": "Time frame in months to measure growth over.",
            "enum": [
              3,
              6,
              12
            ]
          }
        },
        "additionalProperties": false
      },
      "crm_account_owner": {
        "type": "array",
        "description": "Filter by CRM account owner emails. Requires a connected CRM integration (Salesforce or HubSpot). Returns an error if no owners match the provided emails.",
        "items": {
          "type": "string",
          "format": "email"
        }
      },
      "company_last_funding": {
        "type": "object",
        "description": "Filter by last funding round.",
        "properties": {
          "round_type": {
            "type": "array",
            "description": "Funding round types to filter by.",
            "items": {
              "type": "string",
              "enum": [
                "pre_seed",
                "seed",
                "angel",
                "venture_round_unknown_series",
                "series_a",
                "series_b",
                "series_c",
                "series_d",
                "series_e",
                "series_f",
                "series_g",
                "series_h",
                "series_i",
                "series_j",
                "debt",
                "equity_crowdfunding",
                "convertible_note",
                "ico",
                "private_equity",
                "other"
              ]
            }
          },
          "range_months": {
            "type": "integer",
            "description": "Number of months to look back for the last funding round."
          }
        },
        "additionalProperties": false
      },
      "company_linkedin_presence": {
        "type": "array",
        "description": "Filter by the company's LinkedIn follower tier. Supported values: `massive` — Massive following (100,000+ followers), `large` — Large following (10,000 - 99,999 followers), `moderate` — Moderate following (1,000 - 9,999 followers), `limited` — Limited following (1 - 999 followers), `none` — No following (0 followers). All ranges are inclusive.",
        "items": {
          "type": "string",
          "enum": [
            "large",
            "limited",
            "massive",
            "moderate",
            "none"
          ]
        }
      },
      "page": {
        "type": "integer",
        "default": 1
      },
      "page_size": {
        "type": "integer",
        "description": "Number of results per page. Values greater than 50 are accepted and capped at 50.",
        "default": 5,
        "minimum": 1
      }
    },
    "required": [],
    "additionalProperties": false
  }
  ```
</details>

## Output Schema

| Name          | Type     | Required | Default | Description                                    |
| ------------- | -------- | -------- | ------- | ---------------------------------------------- |
| `result.data` | `object` | Yes      |         | Provider response payload.                     |
| `result.meta` | `object` | No       |         | Additional response metadata (status, paging). |

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

  ### Output JSON Schema

  ```json theme={null}
  {
    "type": "object",
    "description": "Standard tool result payload.",
    "properties": {
      "data": {
        "type": "object",
        "description": "Provider response payload.",
        "properties": {
          "object": {
            "type": "string",
            "enum": [
              "company_search_result"
            ]
          },
          "results": {
            "type": "array",
            "items": {
              "type": "object",
              "properties": {
                "id": {
                  "type": "string",
                  "format": "uuid"
                },
                "object": {
                  "type": "string",
                  "enum": [
                    "company"
                  ]
                },
                "linkedin_url": {
                  "type": "string"
                },
                "name": {
                  "type": [
                    "string",
                    "null"
                  ]
                },
                "overview": {
                  "type": [
                    "string",
                    "null"
                  ]
                },
                "website": {
                  "type": [
                    "string",
                    "null"
                  ]
                },
                "keywords": {
                  "type": [
                    "array",
                    "null"
                  ],
                  "items": {
                    "type": "string"
                  }
                },
                "followers": {
                  "type": [
                    "integer",
                    "null"
                  ]
                },
                "linkedin_presence": {
                  "type": [
                    "string",
                    "null"
                  ],
                  "description": "`massive` — Massive following (100,000+ followers), `large` — Large following (10,000 - 99,999 followers), `moderate` — Moderate following (1,000 - 9,999 followers), `limited` — Limited following (1 - 999 followers), `none` — No following (0 followers). All ranges are inclusive.",
                  "enum": [
                    "massive",
                    "large",
                    "moderate",
                    "limited",
                    "none"
                  ]
                },
                "estimated_number_of_employees": {
                  "type": [
                    "integer",
                    "null"
                  ]
                },
                "size": {
                  "type": [
                    "string",
                    "null"
                  ],
                  "enum": [
                    "10001+ employees",
                    "201-500 employees",
                    "51-200 employees",
                    "11-50 employees",
                    "1-10 employees"
                  ]
                },
                "location": {
                  "type": [
                    "string",
                    "null"
                  ]
                },
                "location_details": {
                  "type": "object",
                  "properties": {
                    "country": {
                      "type": [
                        "string",
                        "null"
                      ]
                    },
                    "state": {
                      "type": [
                        "string",
                        "null"
                      ]
                    },
                    "city": {
                      "type": [
                        "string",
                        "null"
                      ]
                    },
                    "postal_code": {
                      "type": [
                        "string",
                        "null"
                      ]
                    },
                    "lat": {
                      "type": [
                        "number",
                        "null"
                      ]
                    },
                    "long": {
                      "type": [
                        "number",
                        "null"
                      ]
                    }
                  },
                  "additionalProperties": false
                },
                "locations": {
                  "type": [
                    "array",
                    "null"
                  ],
                  "items": {
                    "type": "object",
                    "properties": {
                      "address": {
                        "type": "string",
                        "description": "Full address as a single string"
                      },
                      "is_primary": {
                        "type": "boolean",
                        "description": "Indicates if this is the primary location"
                      },
                      "country": {
                        "type": [
                          "string",
                          "null"
                        ],
                        "description": "Country name (e.g., United States)"
                      },
                      "state": {
                        "type": [
                          "string",
                          "null"
                        ],
                        "description": "State or subdivision name (e.g., California, New York)"
                      },
                      "city": {
                        "type": [
                          "string",
                          "null"
                        ],
                        "description": "City name"
                      },
                      "postal_code": {
                        "type": [
                          "string",
                          "null"
                        ],
                        "description": "Postal code"
                      }
                    },
                    "additionalProperties": false
                  }
                },
                "logo_url": {
                  "type": "string",
                  "format": "uri"
                },
                "founded_year": {
                  "type": [
                    "integer",
                    "null"
                  ]
                },
                "traffic_rank": {
                  "type": [
                    "integer",
                    "null"
                  ]
                },
                "sic_codes": {
                  "type": [
                    "array",
                    "null"
                  ],
                  "items": {
                    "type": "integer"
                  }
                },
                "naics_codes": {
                  "type": [
                    "array",
                    "null"
                  ],
                  "items": {
                    "type": "integer"
                  }
                },
                "type": {
                  "type": [
                    "string",
                    "null"
                  ],
                  "enum": [
                    "Public Company",
                    "Educational",
                    "Self Employed",
                    "Government Agency",
                    "Non Profit",
                    "Self Owned",
                    "Privately Held",
                    "Partnership"
                  ]
                },
                "total_funding": {
                  "type": [
                    "integer",
                    "null"
                  ]
                },
                "latest_funding_stage": {
                  "type": [
                    "string",
                    "null"
                  ],
                  "enum": [
                    "seed",
                    "angel",
                    "venture_round_unknown_series",
                    "series_a",
                    "series_b",
                    "series_c",
                    "series_d",
                    "series_e",
                    "series_f",
                    "series_g",
                    "series_h",
                    "series_i",
                    "series_j",
                    "debt",
                    "equity_crowdfunding",
                    "convertible_note",
                    "ico",
                    "private_equity",
                    "other"
                  ]
                },
                "latest_funding_date": {
                  "type": [
                    "string",
                    "null"
                  ],
                  "format": "date"
                },
                "is_b2b": {
                  "type": [
                    "boolean",
                    "null"
                  ]
                },
                "is_b2c": {
                  "type": [
                    "boolean",
                    "null"
                  ]
                },
                "technologies": {
                  "type": [
                    "array",
                    "null"
                  ],
                  "items": {
                    "type": "string"
                  }
                },
                "department_headcount": {
                  "type": "object",
                  "additionalProperties": {
                    "type": "integer"
                  }
                },
                "job_function_headcount": {
                  "type": "object",
                  "additionalProperties": {
                    "type": "object",
                    "additionalProperties": {
                      "type": "integer"
                    }
                  }
                },
                "estimated_revenue": {
                  "type": [
                    "string",
                    "null"
                  ],
                  "enum": [
                    "$0-$1M",
                    "$1M-$10M",
                    "$10M-$100M",
                    "$100M-$1B",
                    "$1B+"
                  ]
                },
                "revenue": {
                  "type": [
                    "integer",
                    "null"
                  ]
                }
              },
              "required": [
                "id",
                "object",
                "linkedin_url"
              ],
              "additionalProperties": true
            }
          },
          "_errors": {
            "type": "array",
            "items": {
              "type": "object",
              "properties": {
                "code": {
                  "type": "string"
                },
                "title": {
                  "type": "string"
                },
                "detail": {
                  "type": "string"
                },
                "source": {
                  "type": "object",
                  "properties": {
                    "pointer": {
                      "type": "string"
                    }
                  },
                  "additionalProperties": false
                }
              },
              "required": [
                "code",
                "title",
                "detail"
              ],
              "additionalProperties": false
            }
          },
          "_pagination": {
            "type": "object",
            "properties": {
              "page": {
                "type": "integer"
              },
              "page_size": {
                "type": "integer"
              },
              "total": {
                "type": "integer"
              },
              "total_pages": {
                "type": "integer"
              }
            },
            "required": [
              "page",
              "page_size",
              "total"
            ],
            "additionalProperties": false
          }
        },
        "required": [
          "object",
          "results",
          "_pagination"
        ],
        "additionalProperties": false
      },
      "meta": {
        "type": "object",
        "description": "Additional response metadata (status, paging).",
        "additionalProperties": true
      }
    },
    "required": [
      "data"
    ],
    "additionalProperties": false
  }
  ```
</details>

## Advanced: Direct CLI

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

```bash theme={null}
deepline tools execute amplemarket_post_companies_search --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.                      |

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