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

Add address to stream

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

Adds an address to a Stream.

PATH PARAMS
idstringrequired
The id of the stream to add the address to
BODY PARAM
Request Bodyobjectrequired
Provide a Address Model
Responses
200Ok
400Bad Request
404Not Found
429Too Many Requests
500Internal Server Error
API KEY
curl --request POST \
--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": ""
}