Skip to main content
Version: 2.2

Get streams

GEThttps://api.moralis-streams.com/streams/evm

Get all the evm streams for the current project based on the project api-key.

QUERY PARAMS
limitnumberrequired
Limit response results max value 100
cursorstring
Cursor for fetching next page
Responses
API KEY
import Moralis from 'moralis';

try {
await Moralis.start({
apiKey: "YOUR_API_KEY"
});

const response = Moralis.Streams.getAll({});

console.log(response.raw);
} catch (e) {
console.error(e);
}
Response Example
{
"result": {
"triggers": {
"inputs": [
""
]
}
}
}