put https://api.moralis-streams.com/streams/evm
Creates a new evm stream.
Log in to see full request history
It is recommended to use the admin interface or Moralis SDK to create streams.
Response
Creates a new evm stream.
It is recommended to use the admin interface or Moralis SDK to create streams.
xxxxxxxxxx
14import Moralis from "moralis";
​
Moralis.start({
apiKey: 'YOUR_API_KEY',
// ...and any other configuration
});
​
const limit = 20;
​
const { result } = await Moralis.Streams.getAll({
limit,
});
​
console.log(result);
Try It!
to start a request and see the response here!