> ## Documentation Index
> Fetch the complete documentation index at: https://betterdatainc.mintlify.site/llms.txt
> Use this file to discover all available pages before exploring further.

# Hosted Gateway Configuration

> Configure your hosted AI Gateway settings and connectors

# Hosted Gateway Configuration

Configure your hosted AI Gateway settings, connectors, and integrations.

## Gateway Settings

### General Configuration

* **Gateway Name**: Display name for your gateway
* **Description**: Brief description of your gateway
* **Status**: Active / Inactive
* **Rate Limits**: Configure request rate limits per provider

### Provider Configuration

Enable or disable AI providers:

* ✅ Claude (Anthropic)
* ✅ OpenAI (ChatGPT)
* ✅ Grok (xAI)
* ✅ Gemini (Google)

## Connector Configuration

### Shopify

```json theme={null}
{
  "platform": "shopify",
  "storeUrl": "your-store.myshopify.com",
  "storefrontAccessToken": "your-token",
  "apiVersion": "2024-01",
  "features": {
    "products": true,
    "cart": true,
    "orders": true,
    "inventory": true
  }
}
```

### BigCommerce

```json theme={null}
{
  "platform": "bigcommerce",
  "storeHash": "your-store-hash",
  "accessToken": "your-token",
  "features": {
    "products": true,
    "cart": true,
    "orders": true
  }
}
```

### Custom REST API

```json theme={null}
{
  "platform": "custom",
  "baseUrl": "https://api.yourstore.com",
  "authentication": {
    "type": "bearer",
    "token": "your-api-token"
  },
  "endpoints": {
    "products": "/products",
    "cart": "/cart",
    "orders": "/orders"
  }
}
```

## Session Management

Configure session storage and TTL:

* **Session TTL**: Default 24 hours
* **Cross-Platform Transfer**: Enable session sharing across AI assistants
* **Storage**: Redis (managed)

## Security Settings

* **API Key Authentication**: Required for all requests
* **IP Allowlisting**: Optional IP restrictions
* **Rate Limiting**: Per-provider rate limits
* **Webhook Signing**: Verify webhook authenticity

***

## Related Pages

* [Getting Started](/hosted/ai-registry/getting-started)
* [Analytics & Monitoring](/hosted/ai-registry/analytics)
