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

# Sumble Find Jobs: Inputs, Cost & CLI Example

> Find job listings. Requires the workspace's own Sumble API key. Sumble Sumble Find Jobs docs include request fields, response shape, pricing notes, and Deepline

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

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

## Input Schema

| Name                           | Type             | Required | Default | Description                                                                                           |
| ------------------------------ | ---------------- | -------- | ------- | ----------------------------------------------------------------------------------------------------- |
| `payload.organization`         | `object \| null` | No       |         | Organization to enrich                                                                                |
| `payload.filters`              | `object`         | Yes      |         | Filters to apply to the jobs search. Can be either a Filters object or a Query object.                |
| `payload.include_descriptions` | `boolean`        | No       | `false` | Whether to include job descriptions in the response. If false, each job costs 2 credits instead of 3. |
| `payload.limit`                | `integer`        | No       | `10`    | Maximum number of people to return                                                                    |
| `payload.offset`               | `integer`        | No       | `0`     | Number of results to skip                                                                             |

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

  ### Input JSON Schema

  ```json theme={null}
  {
    "type": "object",
    "description": "Find job listings",
    "properties": {
      "organization": {
        "description": "Organization to enrich",
        "anyOf": [
          {
            "type": "object",
            "properties": {
              "domain": {
                "type": "string",
                "description": "Company web domain"
              }
            },
            "required": [
              "domain"
            ],
            "additionalProperties": false
          },
          {
            "type": "object",
            "properties": {
              "id": {
                "type": "integer",
                "description": "Organization Id on Sumble"
              }
            },
            "required": [
              "id"
            ],
            "additionalProperties": false
          },
          {
            "type": "object",
            "properties": {
              "slug": {
                "type": "string",
                "description": "Organization Slug on Sumble"
              }
            },
            "required": [
              "slug"
            ],
            "additionalProperties": false
          },
          {
            "type": "object",
            "properties": {
              "linkedin_url": {
                "type": "string",
                "description": "Organization LinkedIn URL",
                "minLength": 1,
                "maxLength": 2083,
                "format": "uri"
              }
            },
            "required": [
              "linkedin_url"
            ],
            "additionalProperties": false
          },
          {
            "type": "null"
          }
        ]
      },
      "filters": {
        "description": "Filters to apply to the jobs search. Can be either a Filters object or a Query object.",
        "anyOf": [
          {
            "type": "object",
            "properties": {
              "technologies": {
                "type": "array",
                "description": "Technologies to search for",
                "default": [],
                "items": {
                  "type": "string"
                }
              },
              "technology_categories": {
                "type": "array",
                "description": "Technology categories to search for",
                "default": [],
                "items": {
                  "type": "string"
                }
              },
              "countries": {
                "type": "array",
                "description": "Countries to filter by (e.g. US, CA)",
                "default": [],
                "items": {
                  "type": "string"
                }
              },
              "since": {
                "type": [
                  "string",
                  "null"
                ],
                "description": "Only consider data since this date. Format: YYYY-MM-DD"
              }
            },
            "additionalProperties": false
          },
          {
            "type": "object",
            "properties": {
              "query": {
                "type": "string"
              }
            },
            "required": [
              "query"
            ],
            "additionalProperties": false
          }
        ]
      },
      "include_descriptions": {
        "type": "boolean",
        "description": "Whether to include job descriptions in the response. If false, each job costs 2 credits instead of 3.",
        "default": false
      },
      "limit": {
        "type": "integer",
        "description": "Maximum number of people to return",
        "default": 10,
        "minimum": 1,
        "maximum": 100
      },
      "offset": {
        "type": "integer",
        "description": "Number of results to skip",
        "default": 0,
        "minimum": 0,
        "maximum": 10000
      }
    },
    "required": [
      "filters"
    ],
    "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": "string",
            "format": "uuid"
          },
          "jobs": {
            "type": "array",
            "items": {
              "type": "object",
              "properties": {
                "id": {
                  "type": "integer"
                },
                "organization_id": {
                  "type": "integer"
                },
                "organization_name": {
                  "type": "string"
                },
                "organization_domain": {
                  "type": [
                    "string",
                    "null"
                  ]
                },
                "job_title": {
                  "type": "string"
                },
                "datetime_pulled": {
                  "type": "string",
                  "format": "date-time"
                },
                "primary_job_function": {
                  "type": [
                    "string",
                    "null"
                  ]
                },
                "location": {
                  "type": "string"
                },
                "teams": {
                  "type": "string"
                },
                "matched_projects": {
                  "type": [
                    "string",
                    "null"
                  ]
                },
                "projects_description": {
                  "type": [
                    "string",
                    "null"
                  ]
                },
                "matched_technologies": {
                  "type": [
                    "string",
                    "null"
                  ]
                },
                "matched_job_functions": {
                  "type": [
                    "string",
                    "null"
                  ]
                },
                "projects": {
                  "type": [
                    "string",
                    "null"
                  ]
                },
                "description": {
                  "type": [
                    "string",
                    "null"
                  ]
                },
                "url": {
                  "type": "string"
                }
              },
              "required": [
                "id",
                "organization_id",
                "organization_name",
                "organization_domain",
                "job_title",
                "datetime_pulled",
                "primary_job_function",
                "location",
                "teams",
                "matched_projects",
                "projects_description",
                "matched_technologies",
                "matched_job_functions",
                "projects",
                "url"
              ],
              "additionalProperties": false
            }
          },
          "source_data_url": {
            "type": "string",
            "minLength": 1,
            "maxLength": 2083,
            "format": "uri"
          },
          "total": {
            "type": "integer"
          }
        },
        "required": [
          "id",
          "jobs",
          "source_data_url",
          "total"
        ],
        "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 sumble_find_jobs --payload '{
  "filters": {}
}' --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`.
