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

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
addressstring
The address or a list of addresses to be removed from the Stream.
Responses
200Ok
400Bad Request
404Not Found
429Too Many Requests
500Internal Server Error
API KEY
curl --request DELETE \
--url 'https://api.moralis-streams.com/streams/evm/%3Aid/address' \
--header 'accept: application/json' \
--header 'X-API-Key: YOUR_API_KEY' \
--header 'content-type: application/json' \
--data '
{
"address": "string"
}
'
Response Example
{
"streamId": "",
"address": ""
}