# Add address to stream Adds an address to a Stream. ## Method POST ## Base URL `https://api.moralis-streams.com` ## Path `/streams/evm/:id/address` ## Path Params | Name | Type | Required | Description | Example | |------|------|----------|-------------|----------| | id | string | Yes | The id of the stream to add the address to | - | ## Body | Name | Type | Required | Description | Example | |------|------|----------|-------------|----------| | address | - | No | The address or a list of addresses to be added to the Stream. | \`string\` | ## Response Example Status: 200 Ok ```json { "streamId": "streamId_example" } ``` ## Example (curl) ```bash curl -X POST "https://api.moralis-streams.com/streams/evm/:id/address" \ -H "accept: application/json" \ -H "X-API-Key: $MORALIS_API_KEY" \ -H "Content-Type: application/json" \ -d '{ "address": "string" }' ```