Skip to main content

Don't have an API key yet?

Sign-up to Moralis to get your free API key and start building today.

Get Your Free API Key

Get addresses by stream

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

Get all addresses associated with a specific stream.

PATH PARAMS
idstringrequired
the id of the stream to get the addresses from
QUERY PARAMS
limitnumberrequired
Limit response results max value 100
cursorstring
Cursor for fetching next page
Responses
200Ok
400Bad Request
404Not Found
429Too Many Requests
500Internal Server Error
API KEY
curl --request GET \
--url 'https://api.moralis-streams.com/streams/evm/%3Aid/address?limit=25' \
--header 'accept: application/json' \
--header 'X-API-Key: YOUR_API_KEY'
Response Example
{
"result": [
{
"address": ""
}
],
"cursor": "",
"total": ""
}