Use QStash via:
- cURL
- Typescript SDK
- Python SDK
Publish a message to an endpoint
Simple example to publish a message to an endpoint.Publish a message to a URL Group
The URL Group is a way to publish a message to multiple endpoints in a fan out pattern.Publish a message with 5 minutes delay
Add a delay to the message to be published. After QStash receives the message, it will wait for the specified time (5 minutes in this example) before sending the message to the endpoint.Send a custom header
Add a custom header to the message to be published.Schedule to run once a day
Publish messages to a FIFO queue
By default, messges are published concurrently. With a queue, you can enqueue messages in FIFO order.Publish messages in a batch
Publish multiple messages in a single request.Set max retry count to 3
Configure how many times QStash should retry to send the message to the endpoint before sending it to the dead letter queue.Set custom retry delay
Configure the delay between retry attempts when message delivery fails. By default, QStash uses exponential backoff. You can customize this using mathematical expressions with the special variableretried
(current retry attempt count starting from 0).
pow
- Power functionsqrt
- Square rootabs
- Absolute valueexp
- Exponentialfloor
- Floor functionceil
- Ceiling functionround
- Rounding functionmin
- Minimum of valuesmax
- Maximum of values
1000
- Fixed 1 second delay1000 * (1 + retried)
- Linear backoff: 1s, 2s, 3s, 4s…pow(2, retried) * 1000
- Exponential backoff: 1s, 2s, 4s, 8s…max(1000, pow(2, retried) * 100)
- Exponential with minimum 1s delay