Skip to main content
POST
/
helper
/
companies
/
lookup
Look up companies by identifier
curl --request POST \
  --url https://api.noonum.ai/v2/helper/companies/lookup \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "id": "c3b1862e-0c7a-4a0d-b88e-4bc499892f00",
  "isin": "US0378331005",
  "symbol": "AAPL"
}
'
{
  "companies": [
    {
      "id": "c3b1862e-0c7a-4a0d-b88e-4bc499892f00",
      "name": "Apple Inc.",
      "securities": [
        {
          "isin": "US0378331005",
          "symbol": "AAPL"
        }
      ],
      "industry": "Consumer Electronics",
      "marketCap": 3000000000000,
      "sector": "Technology"
    }
  ]
}

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

Provide at least one of id, isin, or symbol. Multiple filters are combined.

id
string

Unique company (issuer) identifier.

Example:

"c3b1862e-0c7a-4a0d-b88e-4bc499892f00"

isin
string

International Securities Identification Number.

Example:

"US0378331005"

symbol
string

Ticker symbol.

Example:

"AAPL"

Response

Matching companies

companies
object[]
required