Skip to main content

Activate a Stream – Streams REST API

Updated on
Jul 20, 2026

Overview

Activates a paused stream to resume data ingestion and delivery to your configured destination. Use this endpoint to restart a stream that was previously paused.

Key behaviors:

  • Stream resumes from where it was paused
  • Data delivery continues to the configured destination
  • No configuration changes are made
  • Stream status changes from paused to active

Endpoint

Send a POST request to activate a paused stream.

POST https://api.quicknode.com/streams/rest/v1/streams/{id}/activate

Path Parameters

ParameterTypeRequiredDescription
idstringYesThe unique identifier (UUID) of the stream to activate

Example Request

curl -X POST "https://api.quicknode.com/streams/rest/v1/streams/f6ad6459-b5ad-4183-b370-1c1388e47e83/activate" \
-H "accept: application/json" \
-H "x-api-key: YOUR_API_KEY"

Response

On success, the API returns a confirmation message.

{
"code": 200,
"msg": "Stream activated successfully",
"data": null
}

Response Fields

FieldTypeDescription
codenumberHTTP status code (200 for success)
msgstringConfirmation message
datanullNo additional data returned
Share this doc