Skip to main content
Version: 2.2

Delete addresses of an aptos stream

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

Deletes addresses of an existing aptos stream

PATH PARAMS
idstringrequired
the id of the aptos stream to get the addresses from
BODY PARAM
jsonrequired
Provide a list of valid Aptos addresses, or a single address
Responses
API KEY
// Dependencies to install:
// $ npm install node-fetch --save
// add "type": "module" to package.json

import fetch from 'node-fetch';

const options = {
method: 'DELETE',
headers: {
accept: 'application/json',
'X-API-Key': 'YOUR_API_KEY'
},
};

fetch('https://api.moralis-streams.com/streams/aptos/%3Aid/address', options)
.then(response => response.json())
.then(response => console.log(response))
.catch(err => console.error(err));
Response Example
Empty