A simple, serverless URL shortener built using AWS Lambda, API Gateway, and DynamoDB.
- Accepts long URLs via POST request
- Generates a unique short code
- Stores mapping in DynamoDB
- Returns short URL as JSON
- AWS Lambda (Python)
- API Gateway
- DynamoDB (NoSQL)
- Send a POST request to the API Gateway URL with a JSON body:
{ "long_url": "https://example.com" }