UNPKG

nse-data

Version:

NSE (National Stock Exchange) - Stock & Indices Data API

9 lines (6 loc) 194 B
import { get } from "../../common/http"; export const searchSymbol = async (symbol: string) => { const url = `/search-symbol/${symbol}`; return await get(url); }; // searchSymbol("HDFC");