LIVE API · us-east-1
SERVERLESS
DEMO
An interactive demo of Project 6 — the real-time event pipeline built on Lambda, API Gateway, DynamoDB, and SQS. Click the buttons below to interact with the live API.
01
Shorten URL
Creates a short code, writes to DynamoDB with a conditional write to prevent collisions.
POST /shorten
// Response will appear here
02
Follow Redirect
Reads from DynamoDB, fire-and-forget sends a click event to SQS, returns 302. Under 100ms.
GET /{code}
// Response will appear here
03
Click Analytics
Queries both DynamoDB tables. The analytics Lambda has already processed clicks asynchronously via SQS.
GET /stats/{code}
// Stats will appear here
$ event_log
[ready] Pipeline initialized. Click a button to start.