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

# HarvestAPI: Search Geo Ids

> Resolve LinkedIn geographic IDs from location text. Includes SDK V2 guidance, input constraints, response fields, and Deepline credit cost.

Resolve LinkedIn geographic IDs from location text.

<Info>
  Tool ID: `harvestapi_search_geo_ids`
</Info>

## Run this action

Use the TypeScript SDK for a single call. Put `ctx.tools.execute(...)` inside a Play when the call should be durable, scheduled, or run across a CSV.

```ts theme={null}
import { Deepline } from 'deepline';

const deepline = await Deepline.connect();
const result = await deepline.tools.execute(
  'harvestapi_search_geo_ids',
  {
    "search": "software companies hiring engineers"
  },
);

console.log(result.toolResponse.raw);
```

### CLI

```bash theme={null}
deepline tools execute harvestapi_search_geo_ids --input '{
  "search": "software companies hiring engineers"
}' --json
```

## Example response

The SDK exposes this shape at `result.toolResponse.raw`. Values below are representative.

```json theme={null}
{
  "data": {
    "id": "id_123",
    "status": 1,
    "error": "example"
  }
}
```

Use `deepline tools get harvestapi_search_geo_ids --json` for the latest machine-readable contract.

## Input reference

Search LinkedIn Geo ID by location text

| Name             | Type     | Required | Default | Details                                                          |
| ---------------- | -------- | -------- | ------- | ---------------------------------------------------------------- |
| `payload.search` | `string` | No       | —       | Location text to search for Geo ID (required) Minimum length: 1. |

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

  ### Input JSON Schema

  ```json theme={null}
  {
    "type": "object",
    "description": "Search LinkedIn Geo ID by location text",
    "properties": {
      "search": {
        "type": "string",
        "description": "Location text to search for Geo ID (required)",
        "minLength": 1
      }
    },
    "required": [],
    "allOf": [
      {
        "anyOf": [
          {
            "required": [
              "search"
            ]
          }
        ]
      }
    ],
    "additionalProperties": false
  }
  ```
</details>

## Output reference

Standard tool result payload.

| Name                                      | Type                | Required | Default | Details                                        |
| ----------------------------------------- | ------------------- | -------- | ------- | ---------------------------------------------- |
| `result.data`                             | `object`            | Yes      | —       | Provider response payload.                     |
| `result.data.id`                          | `string`            | No       | —       | —                                              |
| `result.data.status`                      | `string \| integer` | No       | —       | —                                              |
| `result.data.error`                       | `string \| null`    | No       | —       | —                                              |
| `result.data.elements`                    | `array`             | No       | —       | —                                              |
| `result.data.elements[].geoId`            | `string`            | No       | —       | —                                              |
| `result.data.elements[].title`            | `string`            | No       | —       | —                                              |
| `result.data.pagination`                  | `object \| null`    | No       | —       | —                                              |
| `result.data.pagination.totalPages`       | `integer \| null`   | No       | —       | —                                              |
| `result.data.pagination.totalElements`    | `integer \| null`   | No       | —       | —                                              |
| `result.data.pagination.pageNumber`       | `integer \| null`   | No       | —       | —                                              |
| `result.data.pagination.previousElements` | `integer \| null`   | No       | —       | —                                              |
| `result.data.pagination.pageSize`         | `integer \| null`   | No       | —       | —                                              |
| `result.data.pagination.paginationToken`  | `string \| null`    | No       | —       | —                                              |
| `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"
          },
          "status": {
            "type": [
              "string",
              "integer"
            ]
          },
          "error": {
            "type": [
              "string",
              "null"
            ]
          },
          "elements": {
            "type": "array",
            "items": {
              "type": "object",
              "properties": {
                "geoId": {
                  "type": "string"
                },
                "title": {
                  "type": "string"
                }
              },
              "additionalProperties": false
            }
          },
          "pagination": {
            "type": [
              "object",
              "null"
            ],
            "properties": {
              "totalPages": {
                "type": [
                  "integer",
                  "null"
                ]
              },
              "totalElements": {
                "type": [
                  "integer",
                  "null"
                ]
              },
              "pageNumber": {
                "type": [
                  "integer",
                  "null"
                ]
              },
              "previousElements": {
                "type": [
                  "integer",
                  "null"
                ]
              },
              "pageSize": {
                "type": [
                  "integer",
                  "null"
                ]
              },
              "paginationToken": {
                "type": [
                  "string",
                  "null"
                ]
              }
            },
            "additionalProperties": false
          }
        },
        "additionalProperties": false
      },
      "meta": {
        "type": "object",
        "description": "Additional response metadata (status, paging).",
        "additionalProperties": true
      }
    },
    "required": [
      "data"
    ],
    "additionalProperties": false
  }
  ```
</details>

## Deepline cost

* Pricing model: `provider_usage` (provider usage).
* Estimated Deepline credits: `0.01` per pricing unit.

## Related documentation

* [HarvestAPI provider guide](/docs/providers/harvestapi/guide)
* [SDK V2 quickstart](/docs/sdk-v2/quickstart)
* [SDK reference](/docs/sdk-v2/sdk-reference)
* [Run tools across a CSV](/docs/sdk-v2/batch-csv)
