get https://api.moralis-streams.com/streams/evm
Get all the evm streams for the current project based on the project api-key.
Log in to see full request history
Response
Get all the evm streams for the current project based on the project api-key.
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!