---
title: "Resolve to CIK"
method: GET
path: "/api/v2/filings/resolve"
tags: ["Filings"]
---

# Resolve to CIK

`GET /api/v2/filings/resolve`

Resolve a ticker / CIK / company name to its SEC CIK and resolved entity_id. Requires a plan with SEC filings access (`can_use_filings`) — the Corporate & Supply Chain plan and above.

## Query parameters

- `ticker` string
- `cik` string
- `name` string

## Response `200`

Resolution result. `query` echoes the { ticker, cik, name } you passed; `resolved` is { cik, entity_id } (entity_id may be null when the filer is not yet on the entity spine) or null when nothing matched. Envelope: { success, query, resolved }.

- object
  - `success` boolean
  - `query` object
    - `ticker` string
    - `cik` unknown
    - `name` unknown
  - `resolved` object
    - `cik` integer
    - `company_name` string
    - `ticker` string
    - `entity_id` string

## Other responses

- `401` — Missing/invalid API key
- `403` — Plan required (PLAN_REQUIRED)
- `500` — Server error

---

[API](https://skmtc.net/gdeltcloud/apis/gdelt-cloud-api-v2.md) · [All operations](https://skmtc.net/gdeltcloud/apis/gdelt-cloud-api-v2/llms.txt) · [OpenAPI document](https://skmtc-service-staging.skmtc.workers.dev/v1/apis/gdeltcloud/gdelt-cloud-api-v2/revisions/01aaa6255180/schema)
