Gateway
Create Gateway
Getting Started
- Overview
- Installation & Running
- Quickstart: Hello Gateway
- Tutorials & Guides
Core Concepts
Traffic Management
- Rules & Forwarding
- Load Balancing
- CORS
Rate Limiting & Request Control
- Rate Limiting
- Request Size Limiting
Content Security
- Overview
- NeuralTrust Guardrail
- Context Security
- Prompt Jailbreaks Protection
- Toxicity Detection
- Content Moderation
Application Security
Extending Functionality
Observability & Monitoring
API Reference
- Gateway
- API Key
- Upstream
- Service
- Rule
Gateway
Create Gateway
Creates a new gateway in the system
POST
/
api
/
v1
/
gateways
{
"created_at": "<string>",
"id": "<string>",
"name": "<string>",
"required_plugins": [
{
"enabled": true,
"id": "<string>",
"level": "gateway",
"name": "<string>",
"parallel": true,
"priority": 123,
"settings": {},
"stage": "pre_request"
}
],
"status": "<string>",
"subdomain": "<string>",
"updated_at": "<string>"
}
Body
application/json
Gateway data
ID of the gateway or rule this plugin belongs to
Available options:
gateway
, rule
Whether this plugin can run in parallel
Available options:
pre_request
, post_request
, pre_response
, post_response
Response
201
application/json
Gateway created successfully
ID of the gateway or rule this plugin belongs to
Available options:
gateway
, rule
Whether this plugin can run in parallel
Available options:
pre_request
, post_request
, pre_response
, post_response
{
"created_at": "<string>",
"id": "<string>",
"name": "<string>",
"required_plugins": [
{
"enabled": true,
"id": "<string>",
"level": "gateway",
"name": "<string>",
"parallel": true,
"priority": 123,
"settings": {},
"stage": "pre_request"
}
],
"status": "<string>",
"subdomain": "<string>",
"updated_at": "<string>"
}