POST /api/openfigi/instruments
Price: 5 credits
Resolve a market identifier (ISIN, CUSIP, SEDOL, ticker, ...) to FIGI instrument records
Resolve any market identifier to its FIGI (Financial Instrument Global Identifier) records. Provide the identifier type (e.g. ID_ISIN, ID_CUSIP, ID_SEDOL, TICKER) and its value; a widely cross-listed identifier maps to many listings, so set count to how many records you want back. Optionally narrow by exchange code, MIC, currency, market sector, security type, option type, or by numeric range (option strike, contract size, bond coupon) and date range (bond maturity, derivative expiration). Returns one record per matching listing with figi, name, ticker, exchange code, composite FIGI, share-class FIGI, security type, market sector and security description.
access-token string requiredtimeout integer — Max scrapping execution timeout (in seconds) (default: 300; min: 20; max: 1500)exch_code string nullable — Restrict to this exchange code (examples: "US", "LN")mic_code string nullable — Restrict to this ISO market identifier code (MIC) (examples: "XNAS", "XLON")currency string nullable — Restrict to this currency (examples: "USD", "EUR")market_sector string nullable — Restrict to this market sector (one of: "Comdty", "Corp", "Curncy", "Equity", "Govt", "Index", "M-Mkt", "Mtge", "Muni", "Pfd")security_type string nullable — Restrict to this security type (examples: "Common Stock")security_type2 string nullable — Restrict to this broad security category (examples: "Common Stock")include_unlisted_equities boolean nullable — Include unlisted equity instrumentsoption_type string nullable — Restrict options to this type (one of: "Call", "Put")state_code string nullable — Restrict to this US state code for municipal instruments (examples: "NY", "CA")strike_min number nullable — Lowest option strike price to include (examples: 100)strike_max number nullable — Highest option strike price to include (examples: 200)contract_size_min number nullable — Smallest contract size to include (examples: 100)contract_size_max number nullable — Largest contract size to include (examples: 1000)coupon_min number nullable — Lowest bond coupon rate to include (examples: 2.5)coupon_max number nullable — Highest bond coupon rate to include (examples: 7.5)maturity_start string nullable — Earliest bond maturity date to include (YYYY-MM-DD) (examples: "2030-01-01")maturity_end string nullable — Latest bond maturity date to include (YYYY-MM-DD) (examples: "2040-12-31")expiration_start string nullable — Earliest derivative expiration date to include (YYYY-MM-DD) (examples: "2026-01-01")expiration_end string nullable — Latest derivative expiration date to include (YYYY-MM-DD) (examples: "2026-12-31")id_type string required — Type of the identifier being looked up (one of: "BARCLAYS_TICKER", "BASE_TICKER", "COMPOSITE_ID_BB_GLOBAL", "ID_BB", "ID_BB_8_CHR", "ID_BB_GLOBAL", "ID_BB_GLOBAL_SHARE_CLASS_LEVEL", "ID_BB_SEC_NUM_DES", "ID_BB_UNIQUE", "ID_CINS", "ID_COMMON", "ID_CUSIP", "ID_CUSIP_8_CHR", "ID_EXCH_SYMBOL", "ID_FULL_EXCHANGE_SYMBOL", "ID_ISIN", "ID_ITALY", "ID_SEDOL", "ID_SHORT_CODE", "ID_TRACE", "ID_WERTPAPIER", "OCC_SYMBOL", "OPRA_SYMBOL", "TICKER", "TRADEBOOK_TICKER", "TRADING_SYSTEM_IDENTIFIER", "UNIQUE_ID_FUT_OPT", "VENDOR_INDEX_CODE")id_value string required — The identifier value to resolve to FIGI records (examples: "US4592001014", "IBM"; minLength: 1)count integer required — Number of instrument records to return (min: 1)@type string (default: "OpenfigiInstrument")figi string requiredname string nullableticker string nullableexch_code string nullablecomposite_figi string nullableshare_class_figi string nullablesecurity_type string nullablesecurity_type2 string nullablemarket_sector string nullablesecurity_description string nullable422 — The request body did not validate Check the fields against this schema. A URN with the wrong prefix is the most common cause.408 — The request ran past its time limit Raise `timeout` in the request body, up to the maximum this endpoint documents. Lowering `count` or turning off the `with_*` flags also helps, because less work finishes sooner.412 — Instrument not found Retrying will not help: either the entity does not exist, or the input points at a different one.429 — Too many requests: a rate limit or a usage window is exhausted When the response carries an X-Retry-After header, wait that many seconds and retry: the same number is in the body as `detail.retry_after`, and the limit clears once that window passes. The message in the body names the limit that was hit.500 — Something broke on our side Retrying will not help. If it keeps happening, send us the X-Request-ID from the response headers.529 — Rate limit reached, or the endpoint is overloaded Wait at least 30 seconds, then retry.X-Error — Error message text (present only on error)X-Request-ID — Unique request identifierX-Execution-Time — Execution time in secondsX-Result-Count — How many records the body carries. 0 means an empty result, which is a normal answer and not by itself an error. A non-zero count can come back together with X-Error when the failure happened partway through — read this header and X-Error independently.X-Total-Available-Results — How many records exist for this query, when the endpoint can say. On a `dry_run` request this is the answer and the body is empty. It saturates: the endpoint's documented maximum means 'at least that many', any smaller number is exact.X-Warning — Present when the request body carried keys this endpoint does not document. They were ignored, so any filter you meant to apply through them did not apply. Check the spelling against this schema and retry.X-Retry-After — Seconds to wait before retrying. Present only on 429.