api-gateway

Manages AWS API Gateway to create, configure, and deploy HTTP APIs.

Updated Feb 3, 2026
One-click install
npx skills add https://github.com/northseadl/skillwisp --skill api-gateway-northseadl
Or copy as Structured Prompt for Agent
Please help me install this Agent Skill.
Skill: api-gateway
Source: https://github.com/northseadl/skillwisp/tree/main/skills/%40itsmostafa/api-gateway
Command: npx skills add https://github.com/northseadl/skillwisp --skill api-gateway-northseadl

SYSTEM DOCUMENTATION & REQUIREMENTS

💡 This Skill includes scripts (resource) and references (resource) components.

What problem does it solve?

This Skill simplifies the creation, configuration, and management of robust APIs on Amazon Web Services, streamlining backend development and integration.

Core Features & Use Cases

  • API Creation: Define REST, HTTP, or WebSocket APIs.
  • Integration: Connect APIs to AWS Lambda, other AWS services, or external HTTP endpoints.
  • Security & Management: Implement authorization, throttling, caching, and logging.
  • Use Case: Quickly set up a secure REST API endpoint that triggers a Lambda function to process user requests, handling authentication and rate limiting automatically.

Quick Start

Use the api-gateway skill to create a new HTTP API named 'my-service-api' that integrates with the 'my-lambda-function' Lambda function.

Frequently Asked Questions about api-gateway

High-intent search queries and answers about installing and using this skill.

FAQPage Schema
How do I create an AWS API Gateway that triggers a Lambda function?

To create an AWS API Gateway triggering a Lambda function, you define a REST or HTTP API and configure Lambda integration to route client requests directly to your backend function for processing. This setup handles request validation and routing automatically.

Can I use AWS API Gateway with backend services besides Lambda?

Yes, AWS API Gateway facilitates integration with backend services beyond Lambda, supporting direct connections to DynamoDB, SQS, and external HTTP endpoints to route and process API requests without requiring custom compute intermediaries.

What's the best way to secure REST APIs with authorization and throttling?

The best way to secure REST APIs is by implementing API Gateway authorization and throttling policies, which validate incoming requests, control access, and prevent traffic spikes from overwhelming your backend services like Lambda or DynamoDB.

Do I need AWS CLI and API Gateway knowledge to manage HTTP and WebSocket APIs?

Yes, you need AWS CLI and a solid understanding of API Gateway concepts to effectively manage HTTP and WebSocket APIs, as these are required for configuring deployments, integrations, and advanced features like caching.

When should I choose an HTTP API over a REST API in AWS API Gateway?

Choose an HTTP API over a REST API in AWS API Gateway when you need lower latency and cost for basic routing to Lambda or HTTP endpoints, whereas REST APIs provide advanced features like request validation and API management.