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

# SEC EDGAR: Resolve Company

> Resolving an exact stock ticker to its canonical SEC CIK. Includes SDK V2 guidance, input constraints, response fields, and Deepline credit cost.

Resolving an exact stock ticker to its canonical SEC CIK.

<Info>
  Tool ID: `sec_edgar_resolve_company`
</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(
  'sec_edgar_resolve_company',
  {
    "ticker": "example"
  },
);

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

### CLI

```bash theme={null}
deepline tools execute sec_edgar_resolve_company --input '{
  "ticker": "example"
}' --json
```

## Example response

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

```json theme={null}
{
  "company": {
    "cik": "example",
    "name": "Example",
    "tickers": [
      "example"
    ],
    "exchanges": [
      "example"
    ]
  },
  "source_url": "https://example.com/resource"
}
```

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

## Input reference

| Name             | Type     | Required | Default | Details                                                                                                    |
| ---------------- | -------- | -------- | ------- | ---------------------------------------------------------------------------------------------------------- |
| `payload.ticker` | `string` | Yes      | —       | US-listed company ticker, resolved case-insensitively. Pattern: `^[A-Za-z][A-Za-z0-9.-]&#123;0,14&#125;$`. |

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

  ### Input JSON Schema

  ```json theme={null}
  {
    "type": "object",
    "properties": {
      "ticker": {
        "type": "string",
        "description": "US-listed company ticker, resolved case-insensitively.",
        "pattern": "^[A-Za-z][A-Za-z0-9.-]{0,14}$"
      }
    },
    "required": [
      "ticker"
    ],
    "additionalProperties": false
  }
  ```
</details>

## Output reference

| Name                             | Type     | Required | Default | Details                                                       |
| -------------------------------- | -------- | -------- | ------- | ------------------------------------------------------------- |
| `result.company`                 | `object` | Yes      | —       | Canonical SEC company identity resolved from a ticker or CIK. |
| `result.company.cik`             | `string` | Yes      | —       | Zero-padded 10-digit SEC CIK.                                 |
| `result.company.name`            | `string` | Yes      | —       | SEC registrant name.                                          |
| `result.company.ticker`          | `string` | No       | —       | Matched primary ticker.                                       |
| `result.company.tickers`         | `array`  | Yes      | —       | All tickers reported by the SEC for the registrant.           |
| `result.company.exchange`        | `string` | No       | —       | Matched primary exchange.                                     |
| `result.company.exchanges`       | `array`  | Yes      | —       | All exchanges reported by the SEC for the registrant.         |
| `result.company.sic`             | `string` | No       | —       | Standard Industrial Classification.                           |
| `result.company.sic_description` | `string` | No       | —       | SEC description of the SIC industry.                          |
| `result.company.fiscal_year_end` | `string` | No       | —       | Issuer fiscal year end as MMDD.                               |
| `result.source_url`              | `string` | Yes      | —       | Authoritative SEC source URL. Format: `uri`.                  |

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

  ### Output JSON Schema

  ```json theme={null}
  {
    "type": "object",
    "properties": {
      "company": {
        "type": "object",
        "description": "Canonical SEC company identity resolved from a ticker or CIK.",
        "properties": {
          "cik": {
            "type": "string",
            "description": "Zero-padded 10-digit SEC CIK."
          },
          "name": {
            "type": "string",
            "description": "SEC registrant name."
          },
          "ticker": {
            "type": "string",
            "description": "Matched primary ticker."
          },
          "tickers": {
            "type": "array",
            "description": "All tickers reported by the SEC for the registrant.",
            "items": {
              "type": "string"
            }
          },
          "exchange": {
            "type": "string",
            "description": "Matched primary exchange."
          },
          "exchanges": {
            "type": "array",
            "description": "All exchanges reported by the SEC for the registrant.",
            "items": {
              "type": "string"
            }
          },
          "sic": {
            "type": "string",
            "description": "Standard Industrial Classification."
          },
          "sic_description": {
            "type": "string",
            "description": "SEC description of the SIC industry."
          },
          "fiscal_year_end": {
            "type": "string",
            "description": "Issuer fiscal year end as MMDD."
          }
        },
        "required": [
          "cik",
          "name",
          "tickers",
          "exchanges"
        ],
        "additionalProperties": false
      },
      "source_url": {
        "type": "string",
        "description": "Authoritative SEC source URL.",
        "format": "uri"
      }
    },
    "required": [
      "company",
      "source_url"
    ],
    "additionalProperties": false
  }
  ```
</details>

## Deepline cost

* Pricing model: `fixed` (per call).
* Estimated Deepline credits: `0` per pricing unit.
* Provider-native pricing may still exist outside Deepline credit billing.

## Related documentation

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