API Documentation

⌘K
GET/api/1/equity/search

Stock 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

1
qstring
query

Search 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"
  }
}