# API Gateway

> API Gateway

- Skill: `neuralblitz/api-gateway-2` (Agent Skill)
- Install (CLI): `npx skillmds@latest add neuralblitz/api-gateway-2`
- Raw SKILL.md: https://api.skillmd.com/api/skills/neuralblitz/api-gateway-2/raw
- Safety review: pending (external: skill-scanner PASS, skillspector PASS)
- Works with: Claude Code, Claude.ai, OpenAI Codex
- Category: AI & ML
- Author: NeuralBlitz (https://skillmd.com/u/neuralblitz)
- Updated: 2026-09-22
- Page: https://skillmd.com/skills/neuralblitz/api-gateway-2

---

# API Gateway

An API Gateway is a server that acts as a single entry point for defined back-end APIs. It handles request routing, composition, and protocol translation.

## Key Concepts

- Request routing
- Rate limiting
- Authentication/authorization
- Request/response transformation
- Circuit breaking

## Common Use Cases

- Microservices entry point
- API versioning
- Rate limiting by client
- Request aggregation
- Protocol translation

## Best Practices

- Implement proper rate limiting
- Use authentication at gateway
- Handle errors gracefully
- Monitor and log requests
- Consider caching

## Resources

- Kong, AWS API Gateway, Azure APIM
- Related Skills: microservices, rate-limiting, authentication

