AWS SQS (Simple Queue Service)
A convenience API allowing users to interact with AWS SQS without requiring an AWS account. You can create, list, delete queues, and send and receive messages. How to use: 1. Create a queue using the /create_queue endpoint. An ID (UUID) will be generated automatically uniquely identifying the queue. Alternatively, a queue ID can be specified using the "id" query param. 2. Send a message to the…
AWS SQS (Simple Queue Service) endpoints
| Method | Endpoint | Description |
|---|---|---|
| POST |
create_queue /create_queue |
Create a FIFO queue. |
| DELETE |
delete_queue /delete_queue |
Delete a queue by ID. |
| POST |
send_message /send_message |
Send a message to the specified queue. |
| GET |
receive_message /receive_message |
Receive a message from the specified queue. |
| DELETE |
delete_message /delete_message |
Delete message by ID. |
AWS SQS (Simple Queue Service) pricing
| Plan | Price | Rate limit | Quotas |
|---|---|---|---|
| BASIC | Free | — |
|