messaging

Events

PubSub Messaging

Introduction

Publish and subscribe to messages via an event stream. Group messages by topic and asynchronously notify consumers of new events occuring in real time. Messages are persisted in case consumers disconnect.

Features

Consume

Consume events from a given topic.

Publish

Publish a event to the event stream.

Read

Read stored events

Pricing

EndpointPer Request
ConsumeBase
PublishBase
ReadBase

Base requests are 0.000001 USD

Example

Consume Request

Response

{
    "topic": "events",
    "message": {
        "id": "1",
        "type": "signup",
        "user": "john"
    }
}