- Assemble an HTTP request using the API Gateway ID you noted earlier in the IAC setup step (Terraform HCL OR Terraform CDK)
- Endpoint Syntax:
http://<API Gateway ID>.execute-api.localhost.localstack.cloud:4566/<stageId>/<path>
- Example Endpoint:
http://1ltvwqpuju.execute-api.localhost.localstack.cloud:4566/local/test
- Example cURL:
curl --location 'http://1ltvwqpuju.execute-api.localhost.localstack.cloud:4566/local/test'
- Example Response:
{"message":"Hello World!"}