API Documentation
⌘K
API Key
Get free key GET
/api/1/equity/searchStock Search API
Search for stocks, ETFs, crypto, bonds, and mutual funds by name, ticker, or ISIN. Uses full-text search with typo tolerance. Comparable to Finnhub /search.
Parameters
1qstringSearch query (name, ticker, or ISIN)
Responses
Was this helpful?
Request
curl -X GET \
'https://api.eulerpool.com/api/1/equity/search?q=Apple' \
-H 'Accept: application/json'200 Response
{
"count": 5,
"results": {
"name": "Apple Inc.",
"isin": "US0378331005",
"ticker": "AAPL",
"type": "stock",
"currency": "USD"
}
}