messaging
PubSub Messaging
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.
Consume events from a given topic.
Publish a event to the event stream.
Read stored events
Endpoint | Per Request |
---|---|
Consume | Base |
Publish | Base |
Read | Base |
Base requests are 0.000001 USD
Consume Request
Response
{
"topic": "events",
"message": {
"id": "1",
"type": "signup",
"user": "john"
}
}