React native – How do i add limit to to https://api.binance.com/api/v3/ticker/24hr so that i get only few records
useEffect(() => { const fetchData = async () => { try { const response = await fetch( `https://api.binance.com/api/v3/ticker/price`, ); const data: BinancePair[] = await response.json(); // Explicitly annotate the data type // Filter the results for symbols quoted in USDT…