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

# Crustdata V2 Job Search: Inputs, Cost & CLI Example

> Fetch live professional-network job listings for one CrustData company id. Requires x-api-version: 2025-11-01 and Bearer authorization.

## 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=crustdata-v2_crustdata_v2_live_job_search:{"crustdata_company_id":"{{crustdata_company_id}}"}' --json
```

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

## Input Schema

| Name                           | Type      | Required | Default | Description                                       |
| ------------------------------ | --------- | -------- | ------- | ------------------------------------------------- |
| `payload.crustdata_company_id` | `integer` | Yes      |         | CrustData company id to fetch live open jobs for. |

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

  ### Input JSON Schema

  ```json theme={null}
  {
    "type": "object",
    "description": "Fetch currently open live professional-network job listings for one CrustData company id. Deepline injects the required x-api-version: 2025-11-01 header.",
    "properties": {
      "crustdata_company_id": {
        "type": "integer",
        "description": "CrustData company id to fetch live open jobs for.",
        "minimum": 1
      }
    },
    "required": [
      "crustdata_company_id"
    ],
    "additionalProperties": false
  }
  ```
</details>

## Output Schema

| Name          | Type              | Required | Default | Description                                    |
| ------------- | ----------------- | -------- | ------- | ---------------------------------------------- |
| `result.data` | `object \| array` | 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": {
        "description": "Provider response payload.",
        "anyOf": [
          {
            "type": "object",
            "properties": {
              "job_listings": {
                "type": "array",
                "items": {
                  "type": "object",
                  "description": "A CrustData job listing returned by indexed or live job search.",
                  "properties": {
                    "crustdata_job_id": {
                      "type": "integer"
                    },
                    "job_details": {
                      "type": "object",
                      "properties": {
                        "title": {
                          "type": "string"
                        },
                        "category": {
                          "type": "string"
                        },
                        "url": {
                          "type": "string",
                          "format": "uri"
                        },
                        "workplace_type": {
                          "type": "string"
                        },
                        "number_of_openings": {
                          "type": "integer"
                        }
                      },
                      "additionalProperties": true
                    },
                    "company": {
                      "type": "object",
                      "properties": {
                        "basic_info": {
                          "type": "object",
                          "properties": {
                            "crustdata_company_id": {
                              "type": "integer"
                            },
                            "company_id": {
                              "type": "integer"
                            },
                            "name": {
                              "type": "string"
                            },
                            "website_domain": {
                              "type": "string"
                            },
                            "linkedin_profile_url": {
                              "type": "string"
                            }
                          },
                          "additionalProperties": true
                        }
                      },
                      "additionalProperties": true
                    },
                    "location": {
                      "type": "object",
                      "properties": {
                        "raw": {
                          "type": "string"
                        },
                        "city": {
                          "type": "string"
                        },
                        "state": {
                          "type": "string"
                        },
                        "country": {
                          "type": "string"
                        }
                      },
                      "additionalProperties": true
                    },
                    "content": {
                      "type": "object",
                      "properties": {
                        "description": {
                          "type": "string"
                        }
                      },
                      "additionalProperties": true
                    },
                    "metadata": {
                      "type": "object",
                      "properties": {
                        "date_added": {
                          "type": "string",
                          "format": "date-time"
                        },
                        "date_updated": {
                          "type": "string",
                          "format": "date-time"
                        },
                        "company_name": {
                          "type": "string"
                        },
                        "company_website_domain": {
                          "type": "string"
                        },
                        "linkedin_id": {
                          "type": "string"
                        }
                      },
                      "additionalProperties": true
                    },
                    "job_title": {
                      "type": "string",
                      "description": "Legacy flat title field when returned by older response variants."
                    },
                    "company_name": {
                      "type": "string",
                      "description": "Legacy flat company-name field when returned by older response variants."
                    },
                    "linkedin_profile_url": {
                      "type": "string",
                      "description": "Legacy flat company LinkedIn URL field when returned by older response variants."
                    }
                  },
                  "additionalProperties": true
                }
              },
              "next_cursor": {
                "type": [
                  "string",
                  "null"
                ],
                "description": "Cursor for the next page, when available."
              },
              "total_count": {
                "type": "integer",
                "description": "Total matching jobs when returned by CrustData.",
                "minimum": 0
              },
              "aggregations": {
                "type": "array",
                "items": {
                  "type": "object",
                  "additionalProperties": true
                }
              }
            },
            "required": [
              "job_listings"
            ],
            "additionalProperties": true
          },
          {
            "type": "array",
            "items": {
              "type": "object",
              "description": "A CrustData job listing returned by indexed or live job search.",
              "properties": {
                "crustdata_job_id": {
                  "type": "integer"
                },
                "job_details": {
                  "type": "object",
                  "properties": {
                    "title": {
                      "type": "string"
                    },
                    "category": {
                      "type": "string"
                    },
                    "url": {
                      "type": "string",
                      "format": "uri"
                    },
                    "workplace_type": {
                      "type": "string"
                    },
                    "number_of_openings": {
                      "type": "integer"
                    }
                  },
                  "additionalProperties": true
                },
                "company": {
                  "type": "object",
                  "properties": {
                    "basic_info": {
                      "type": "object",
                      "properties": {
                        "crustdata_company_id": {
                          "type": "integer"
                        },
                        "company_id": {
                          "type": "integer"
                        },
                        "name": {
                          "type": "string"
                        },
                        "website_domain": {
                          "type": "string"
                        },
                        "linkedin_profile_url": {
                          "type": "string"
                        }
                      },
                      "additionalProperties": true
                    }
                  },
                  "additionalProperties": true
                },
                "location": {
                  "type": "object",
                  "properties": {
                    "raw": {
                      "type": "string"
                    },
                    "city": {
                      "type": "string"
                    },
                    "state": {
                      "type": "string"
                    },
                    "country": {
                      "type": "string"
                    }
                  },
                  "additionalProperties": true
                },
                "content": {
                  "type": "object",
                  "properties": {
                    "description": {
                      "type": "string"
                    }
                  },
                  "additionalProperties": true
                },
                "metadata": {
                  "type": "object",
                  "properties": {
                    "date_added": {
                      "type": "string",
                      "format": "date-time"
                    },
                    "date_updated": {
                      "type": "string",
                      "format": "date-time"
                    },
                    "company_name": {
                      "type": "string"
                    },
                    "company_website_domain": {
                      "type": "string"
                    },
                    "linkedin_id": {
                      "type": "string"
                    }
                  },
                  "additionalProperties": true
                },
                "job_title": {
                  "type": "string",
                  "description": "Legacy flat title field when returned by older response variants."
                },
                "company_name": {
                  "type": "string",
                  "description": "Legacy flat company-name field when returned by older response variants."
                },
                "linkedin_profile_url": {
                  "type": "string",
                  "description": "Legacy flat company LinkedIn URL field when returned by older response variants."
                }
              },
              "additionalProperties": true
            }
          }
        ]
      },
      "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 crustdata-v2_crustdata_v2_live_job_search --payload '{
  "crustdata_company_id": "integer"
}' --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: `per_result` (per result).
* Estimated Deepline credits: `0.4` per pricing unit.
* Billing mode: `post_deduct`.
