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

# Enformion: Linkedin ID

> Resolve a LinkedIn profile URL to its associated person record. Includes SDK V2 guidance, input constraints, response fields, and Deepline credit cost.

Resolve a LinkedIn profile URL to its associated person record.

<Info>
  Tool ID: `enformion_linkedin_id`
</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(
  'enformion_linkedin_id',
  {
    "profile_url": "https://example.com"
  },
);

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

### CLI

```bash theme={null}
deepline tools execute enformion_linkedin_id --input '{
  "profile_url": "https://example.com"
}' --json
```

## Input reference

Enformion LinkedIn ID lookup (galaxy-search-type: LinkedinID). Resolves a LinkedIn profile URL to the associated person record.

| Name                       | Type      | Required | Default | Details                                  |
| -------------------------- | --------- | -------- | ------- | ---------------------------------------- |
| `payload.profile_url`      | `string`  | Yes      | —       | LinkedIn profile URL. Minimum length: 1. |
| `payload.page`             | `integer` | No       | `1`     | Minimum: 1.                              |
| `payload.results_per_page` | `integer` | No       | `10`    | Minimum: 1. Maximum: 50.                 |

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

  ### Input JSON Schema

  ```json theme={null}
  {
    "type": "object",
    "description": "Enformion LinkedIn ID lookup (galaxy-search-type: LinkedinID). Resolves a LinkedIn profile URL to the associated person record.",
    "properties": {
      "profile_url": {
        "type": "string",
        "description": "LinkedIn profile URL.",
        "minLength": 1
      },
      "page": {
        "type": "integer",
        "default": 1,
        "minimum": 1
      },
      "results_per_page": {
        "type": "integer",
        "default": 10,
        "minimum": 1,
        "maximum": 50
      }
    },
    "required": [
      "profile_url"
    ],
    "additionalProperties": false
  }
  ```
</details>

## Output reference

The static output schema is not available. Run `deepline tools get enformion_linkedin_id --json` for the live contract.

## Deepline cost

* Pricing model: `per_result` (per result).
* Estimated Deepline credits: `1.68` per pricing unit.

## Related documentation

* [Enformion provider guide](/docs/providers/enformion/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)
