🚀 Private Beta: We're currently in private beta. Sign up to join our waitlist and get early access.
Everything you need to integrate intelligent AI agents into your applications. From quick starts to advanced deployment patterns, we've got you covered.
Get up and running in minutes with our step-by-step guide.
Start BuildingChoose between OAuth integration or manual API keys for your application.
Plan IntegrationExplore working examples and get inspired for your projects.
View DemosJoin our community for support, tips, and best practices.
Get SupportSign up for a free account and create your first API key to start testing the gateway.
1. Create your account
2. Navigate to your workspace dashboard
3. Generate your first API key
4. Start making requests to test the gateway
Use our OpenAI-compatible API to test the gateway with your first API key.
curl -X POST https://gateway.atyourservice.ai/v1/openai/chat/completions \
--header 'Authorization: Bearer your-api-key' \
--header 'Content-Type: application/json' \
--data '{
"model": "gpt-4o-mini",
"messages": [
{
"role": "user",
"content": "Hello! How can I integrate AI into my app?"
}
]
}'
Choose between OAuth integration (recommended) or manual API key management for your production application.
Users authenticate directly with us. Zero financial risk for you.
You provision keys for your users and manage billing yourself.
Users authenticate with AI@YourService and get JWT tokens for API calls
Perfect for applications where users should pay for their own AI usage
You provision long-lived API keys for your users and manage billing yourself
Best for applications where you want to control user access and billing
Drop-in replacement for OpenAI's API with enhanced features
Chat completions with streaming support, tool calling, and vision models
Generate embeddings for text similarity and search
List available models and their capabilities
Native support for Claude models with full feature parity
Claude conversations with streaming and tool use
Available Claude models and configurations
Real-time bidirectional communication for agent interfaces
Bring Your Own Key with enterprise-grade encryption
Intelligent request optimization to reduce costs
Comprehensive logging and usage analytics
Multi-user workspaces with role-based access
Pre-built templates for common AI agent patterns
Support for OpenAI, Anthropic, and more
Integrate with web applications and Node.js backends
const response = await fetch(
'https://gateway.atyourservice.ai/v1/openai/chat/completions',
{
method: 'POST',
headers: {
'Authorization': 'Bearer your-api-key',
'Content-Type': 'application/json'
},
body: JSON.stringify({
model: 'gpt-4o-mini',
messages: [{ role: 'user', content: 'Hello!' }]
})
}
);
Use with popular Python AI libraries
import openai
client = openai.OpenAI(
api_key="your-api-key",
base_url="https://gateway.atyourservice.ai/v1/openai"
)
response = client.chat.completions.create(
model="gpt-4o-mini",
messages=[{"role": "user", "content": "Hello!"}]
)
Our team is here to help you succeed. Whether you need technical support, have questions about implementation, or want to discuss your specific use case.