Skip to main content
Version: 2.2

Delete address from stream

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

Deletes an address from a Stream.

PATH PARAMS
idstringrequired
The id of the stream to delete the address from
BODY PARAM
addressoneOf
The address or a list of addresses to be removed from the Stream.
string
Responses
API KEY
import Moralis from 'moralis';

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

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

console.log(response.raw);
} catch (e) {
console.error(e);
}
Response Example
{
"streamId": "",
"address": ""
}