Skip to main content
POST
/
helper
/
companies
/
search
Fast search for companies by name, symbol, ISIN, or FIGI
curl --request POST \
  --url https://api.noonum.ai/v1/helper/companies/search \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "query": "GO",
  "limit": 10
}
'
{
  "results": [
    {
      "id": "c3b1862e-0c7a-4a0d-b88e-4bc499892f00",
      "name": "Alphabet Inc.",
      "securities": [
        {
          "is_primary": true,
          "symbol": "GOOG",
          "isin": "US02079K3059",
          "figi": "BBG009S39JX6",
          "market": "US",
          "exchange": "NASDAQ"
        }
      ],
      "market_cap": 1500000000,
      "sector": "Information Technology",
      "industry": "Systems Software"
    }
  ]
}

Authorizations

Authorization
string
header
required

Enter 'Bearer' followed by a space and then your JWT or API Key. Example: Bearer eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9... or Bearer YOUR_API_KEY_HERE

Body

application/json
query
string
required

Partial or full company name, ticker, ISIN, or FIGI.

Example:

"GO"

limit
integer<int32>
default:10

Maximum number of results to return.

Required range: x >= 1

Response

Matching companies

results
object[]
required