delete https://api.moralis-streams.com/streams/evm//address
Deletes an address from a Stream.
Log in to see full request history
Response
Deletes an address from a Stream.
xxxxxxxxxx
10const url = 'https://api.moralis-streams.com/streams/evm/id/address';
const options = {
method: 'DELETE',
headers: {accept: 'application/json', 'content-type': 'application/json'}
};
​
fetch(url, options)
.then(res => res.json())
.then(json => console.log(json))
.catch(err => console.error(err));
Try It!
to start a request and see the response here! Or choose an example: