API Proxy
Route external API calls through our server to bypass CORS restrictions. Register target URLs and call them from your published pages without worrying about cross-origin issues.
⚡ Built-in — No Setup Required
This integration is built into the WebsitePublisher platform. All endpoints are available immediately — no API key needed.
Endpoints (4)
POST
register
Register a new external API endpoint for proxying. Requires a paid plan (Starter, Pro, or Agency).
| Field | Type | Required | Description |
|---|---|---|---|
name |
string | ✓ Yes | |
target_url |
url | ✓ Yes | |
methods |
array | No | |
auth_type |
string | No | |
auth_header_name |
string | No | |
api_key |
string | No | |
forward_headers |
object | No | |
rate_limit |
integer | No |
POST
update
Update an existing proxy endpoint configuration
| Field | Type | Required | Description |
|---|---|---|---|
name |
string | ✓ Yes | |
target_url |
url | No | |
methods |
array | No | |
auth_type |
string | No | |
auth_header_name |
string | No | |
api_key |
string | No | |
forward_headers |
object | No | |
rate_limit |
integer | No | |
is_active |
boolean | No |
POST
remove
Remove a proxy endpoint and its vault secrets
| Field | Type | Required | Description |
|---|---|---|---|
name |
string | ✓ Yes |
GET
list
List all configured proxy endpoints for this project
No input parameters required.
MCP Tool Names
When using this integration through an AI assistant (Claude, ChatGPT, Cursor, etc.), the endpoints are available as MCP tools:
| Endpoint | MCP Tool Name |
|---|---|
| register | api-proxy_register |
| update | api-proxy_update |
| remove | api-proxy_remove |
| list | api-proxy_list |