aws-api-gateway
SKILL.md
AWS API Gateway
Manage REST and HTTP APIs.
List REST APIs
aws apigateway get-rest-apis --query 'items[].{Id:id,Name:name,Created:createdDate}' --output table
List HTTP APIs (v2)
aws apigatewayv2 get-apis --query 'Items[].{Id:ApiId,Name:Name,Endpoint:ApiEndpoint,Protocol:ProtocolType}' --output table
List resources (REST API)
aws apigateway get-resources --rest-api-id abc123 --query 'items[].{Id:id,Path:path,Methods:resourceMethods}' | jq .
List stages
aws apigateway get-stages --rest-api-id abc123 --query 'item[].{Name:stageName,Deployed:deploymentId,Updated:lastUpdatedDate}' --output table
List stages (HTTP API v2)
aws apigatewayv2 get-stages --api-id abc123 --query 'Items[].{Name:StageName,AutoDeploy:AutoDeploy}' --output table
Create deployment
aws apigateway create-deployment --rest-api-id abc123 --stage-name prod \
--description "Deploy from ThinkFleetBot" | jq '{Id: .id, CreatedDate: .createdDate}'
Get usage plan
aws apigateway get-usage-plans --query 'items[].{Id:id,Name:name,Throttle:throttle,Quota:quota}' | jq .
Notes
- REST API (v1) uses
apigateway; HTTP API (v2) usesapigatewayv2. - Confirm before creating deployments or modifying stages.
Weekly Installs
2
Repository
thinkfleetai/th…t-engineFirst Seen
Mar 1, 2026
Security Audits
Installed on
opencode2
gemini-cli2
claude-code2
github-copilot2
codex2
kimi-cli2