API ReferenceStreamsGet streamsGet streamsGEThttps://api.moralis-streams.com/streams/evmGet all the evm streams for the current project based on the project api-key .QUERY PARAMSlimitnumberrequiredLimit response results max value 100cursorstringCursor for fetching next pagestatusstringResponses200Ok400Bad Request404Not Found429Too Many Requests500Internal Server ErrorAPI KEYTest Live APIcURLNode.jsPythonGoPHPcurl --request GET \ --url 'https://api.moralis-streams.com/streams/evm?limit=25' \ --header 'accept: application/json' \ --header 'X-API-Key: YOUR_API_KEY' // Node.js v18+ has native fetch support// No additional dependencies requiredconst options = { method: 'GET', headers: { accept: 'application/json', 'X-API-Key': 'YOUR_API_KEY' },};fetch('https://api.moralis-streams.com/streams/evm?limit=25', options) .then(response => response.json()) .then(response => console.log(response)) .catch(err => console.error(err));# Dependencies to install:# $ python -m pip install requestsimport requestsurl = "https://api.moralis-streams.com/streams/evm?limit=25"headers = { "Accept": "application/json", "X-API-Key": "YOUR_API_KEY"}response = requests.request("GET", url, headers=headers)print(response.text)package mainimport ( "fmt" "net/http" "io")func main() { url := "https://api.moralis-streams.com/streams/evm?limit=25" req, _ := http.NewRequest("GET", url, payload) req.Header.Add("Accept", "application/json") req.Header.Add("X-API-Key", "YOUR_API_KEY") res, _ := http.DefaultClient.Do(req) defer res.Body.Close() body, _ := io.ReadAll(res.Body) fmt.Println(res) fmt.Println(string(body))}<?php// Dependencies to install:// $ composer require guzzlehttp/guzzlerequire_once('vendor/autoload.php');$client = new \GuzzleHttp\Client();$response = $client->request('GET', 'https://api.moralis-streams.com/streams/evm?limit=25', [ 'headers' => [ 'Accept' => 'application/json', 'X-API-Key' => 'YOUR_API_KEY', ],]);echo $response->getBody();Response Example200 Ok{ "result": [ { "webhookUrl": "", "description": "", "tag": "", "topic0": [ "" ], "allAddresses": "", "includeNativeTxs": "", "includeContractLogs": "", "includeInternalTxs": "", "includeAllTxLogs": "", "getNativeBalances": [ { "selectors": [ "" ], "type": "" } ], "abi": "", "advancedOptions": "", "chainIds": [ "" ], "filterPossibleSpamAddresses": "", "demo": "", "triggers": [ { "type": "", "contractAddress": "", "inputs": [ "" ], "topic0": "", "callFrom": "" } ], "id": "", "statusMessage": "", "updatedAt": "", "amountOfAddresses": "" } ], "cursor": "", "total": ""}