> ## 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 Get Companies Enrichment Requests Id: Inputs,

> Retrieve company enrichment results. 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=amplemarket_get_companies_enrichment_requests_id:{"id":"{{id}}"}' --json
```

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

## Input Schema

| Name           | Type     | Required | Default | Description                                                                                                       |
| -------------- | -------- | -------- | ------- | ----------------------------------------------------------------------------------------------------------------- |
| `payload.id`   | `string` | Yes      |         | Batch id                                                                                                          |
| `payload.page` | `object` | No       |         | Page size. Accepts an integer or a numeric string; Amplemarket types this field inconsistently across operations. |

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

  ### Input JSON Schema

  ```json theme={null}
  {
    "type": "object",
    "description": "Retrieve company enrichment results",
    "properties": {
      "id": {
        "type": "string",
        "description": "Batch id"
      },
      "page": {
        "type": "object",
        "description": "Page size. Accepts an integer or a numeric string; Amplemarket types this field inconsistently across operations.",
        "properties": {
          "size": {
            "type": [
              "integer",
              "string"
            ],
            "description": "Page size. Accepts an integer or a numeric string; Amplemarket types this field inconsistently across operations."
          },
          "after": {
            "type": "string",
            "description": "Page after"
          },
          "before": {
            "type": "string",
            "description": "Page before"
          }
        },
        "required": [],
        "additionalProperties": false
      }
    },
    "required": [
      "id"
    ],
    "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": {
          "id": {
            "type": "integer"
          },
          "object": {
            "type": "string",
            "enum": [
              "company_enrichment"
            ]
          },
          "status": {
            "type": "string",
            "enum": [
              "queued",
              "processing",
              "completed",
              "canceled",
              "error"
            ]
          },
          "results": {
            "type": "array",
            "items": {
              "type": "object",
              "properties": {
                "id": {
                  "type": "integer"
                },
                "status": {
                  "type": "string",
                  "enum": [
                    "found",
                    "not_found",
                    "pending"
                  ]
                },
                "result": {
                  "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
                },
                "domain": {
                  "type": [
                    "string",
                    "null"
                  ]
                },
                "linkedin_url": {
                  "type": [
                    "string",
                    "null"
                  ]
                }
              },
              "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
            }
          },
          "_links": {
            "type": "object",
            "properties": {
              "self": {
                "type": "object",
                "properties": {
                  "href": {
                    "type": "string"
                  }
                },
                "required": [
                  "href"
                ],
                "additionalProperties": false
              },
              "prev": {
                "type": "object",
                "properties": {
                  "href": {
                    "type": "string"
                  }
                },
                "required": [
                  "href"
                ],
                "additionalProperties": false
              },
              "next": {
                "type": "object",
                "properties": {
                  "href": {
                    "type": "string"
                  }
                },
                "required": [
                  "href"
                ],
                "additionalProperties": false
              }
            },
            "required": [
              "self"
            ],
            "additionalProperties": false
          }
        },
        "required": [
          "id",
          "object",
          "status",
          "results",
          "_links"
        ],
        "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_get_companies_enrichment_requests_id --payload '{
  "id": "string"
}' --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`.
