Free-text search for securities across global exchanges via OpenFIGI
Free-text search for securities across global exchanges via OpenFIGI. Give a query (company name, ticker, description) and optionally narrow by exchCode (e.g. US), securityType, or marketSector (Equity, Corp, Govt, Mtge, Muni, Pfd, Comdty, Index, Curncy). Returns relevance-ranked matches with FIGI, composite/share-class FIGI, name, ticker, exchange, security type, market sector, and description, plus a `next` cursor for paging (pass it back as start). Free, open symbology (Bloomberg OpenFIGI). Distinct from finance.figi (exact identifier → FIGI): this is discovery by name/keyword.
Paid test badge: not yet. The checks above are free: we call the tool without paying and read the payment request it sends back. The Verified badge needs paid calls whose answers match the promised output, and nobody can buy a badge.
Endpoint
GET https://2s.io/api/finance/figi-search
| Category | Company and compliance |
|---|---|
| Provider host | 2s.io |
| Networks | eip155:8453, solana:5eykt4UsFv8P8NJdTREpY1vzqKqZKvdp |
| Payment schemes | exact |
| Self-reported calls, 30 days | 2 from 2 payers (the provider's figure, not ours) |
Our checks, last 30 days
| Day | Result | HTTP | Asked | Time |
|---|---|---|---|---|
| 2026-09-24 | valid payment request | 402 | $0.0036 | 258 ms |
Example input (from the provider)
{
"method": "GET",
"queryParams": {
"exchCode": "US",
"query": "apple"
},
"type": "http"
}
Promised output schema (from the provider)
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"properties": {
"input": {
"properties": {
"method": {
"const": "GET"
},
"queryParams": {
"properties": {
"exchCode": {
"description": "Exchange code, e.g. US, LN.",
"type": "string"
},
"limit": {
"description": "Max results (1-100, default 20).",
"type": "integer"
},
"marketSector": {
"description": "Equity, Corp, Govt, Mtge, Muni, Pfd, Comdty, Index, Curncy.",
"type": "string"
},
"query": {
"description": "Search text (name/ticker/description).",
"type": "string"
},
"securityType": {
"description": "Security type filter, e.g. \"Common Stock\".",
"type": "string"
},
"start": {
"description": "Pagination cursor (the previous response's next).",
"type": "string"
}
},
"required": [
"query"
]
},
"type": {
"const": "http"
}
},
"required": [
"type",
"method",
"queryParams"
],
"type": "object"
}
},
"required": [
"input"
],
"type": "object"
}