Skip to main content
GET
/
v2
/
search
curl
curl "https://api.noxstock.com/v2/search?query=apple" \
  -H "X-API-Key: $NOXSTOCK_API_KEY"
{ "data": { "cache_age_seconds": 0, "matches": [ { "asset_type": "stock", "exchange": "NASDAQ", "name": "Apple Inc.", "symbol": "AAPL" }, { "asset_type": "stock", "exchange": "NYSE", "name": "Apple Hospitality REIT, Inc.", "symbol": "APLE" }, { "asset_type": "stock", "exchange": "NYSE", "name": "MAUI LAND & PINEAPPLE CO INC", "symbol": "MLP" } ], "query": "apple" } }

Authorizations

X-API-Key
string
header
required

noxstock API key from the dashboard. Keys start with nxs_ and are shown once when created.

Query Parameters

query
string | null

Free-text search query matched against ticker symbol and issuer name. Case-insensitive; whitespace and punctuation are normalized.

Example:

"apple"

q
string | null

Alias for query (back-compat).

Example:

"AAPL"

Response

Success envelope: { "data": ... }.

data
SearchData · object
required

The endpoint payload. Present on every 2xx response; never null.