Docs
You can use examples below to check how DummyJSON works.
Quotes
Get all quotes
Show outputfetch('https://dummyjson.com/quotes') .then(res => res.json()) .then(console.log);
Get a single quote
Show outputfetch('https://dummyjson.com/quotes/1') .then(res => res.json()) .then(console.log);
Get a random quote
Show outputfetch('https://dummyjson.com/quotes/random') .then(res => res.json()) .then(console.log);
Limit and skip quotes
You can pass "limit" and "skip" params to limit and skip the results for pagination, and use limit=0 to get all items.
Show outputfetch('https://dummyjson.com/quotes?limit=3&skip=10') .then(res => res.json()) .then(console.log);