Monthly Usage
0 / 10,000 requests used
Quick Actions
Your API Keys
Manage your API keys for authentication. Keep them secure!
••••••••••••••••••••••••••••••••••••••••
Never share your API key in public repositories, client-side code, or with untrusted parties. Anyone with this key can make requests on your behalf.
Usage Example
Here's how to use your API key:
# Make a GET request
curl https://raysep.com/api/proxy/api.example.com/data \
-H "Authorization: Bearer YOUR_API_KEY"
# Make a POST request
curl -X POST https://raysep.com/api/proxy/api.example.com/create \
-H "Authorization: Bearer YOUR_API_KEY" \
-H "Content-Type: application/json" \
-d '{"name":"John","email":"john@example.com"}'
# With query parameters
curl "https://raysep.com/api/proxy/api.example.com/search?q=test&limit=10" \
-H "Authorization: Bearer YOUR_API_KEY"
Integration Libraries
Use our client libraries for easy integration:
const apiKey = 'YOUR_API_KEY';
const gateway = 'https://raysep.com';
fetch(`${gateway}/api/proxy/api.example.com/data`, {
headers: { 'Authorization': `Bearer ${apiKey}` }
})
.then(res => res.json())
.then(data => console.log(data));
import requests
API_KEY = 'YOUR_API_KEY'
GATEWAY = 'https://raysep.com'
headers = {'Authorization': f'Bearer {API_KEY}'}
response = requests.get(f'{GATEWAY}/api/proxy/api.example.com/data', headers=headers)
print(response.json())
Recent API Requests
Last 10 requests made through the gateway
| Time | Method | Endpoint | Status | Response Time |
|---|---|---|---|---|
| No requests yet. Start using your API key! | ||||
Usage Statistics
All plans include SSL, global CDN, analytics, and 24/7 support.
Free
- 10,000 requests/month
- 60 requests/minute
- Community support
- Email support (48hr)
- Basic analytics
Basic
- 100,000 requests/month
- 100 requests/minute
- Priority email support (24hr)
- Advanced analytics
- Custom domains
- Request caching
Premium
- 500,000 requests/month
- 200 requests/minute
- HMAC request signing 🔐
- Webhooks
- 24/7 priority support
- 99.9% SLA
- Advanced rate limiting
- 10 API keys
Need More?
Enterprise plans start at $1,999/month with:
- 10M+ requests/month
- Dedicated support engineer
- Custom SLA (up to 99.99%)
- Self-hosted deployment option
- White-label solution
Getting Started
Learn how to integrate API Gateway Pro into your application.
1. Get Your API Key
Your API key is available in the "API Keys" section.
2. Make Your First Request
curl https://raysep.com/api/proxy/httpbin.org/get \ -H "Authorization: Bearer YOUR_API_KEY"
3. Handle Responses
The gateway returns the exact response from your backend API, with additional headers:
X-Gateway- Gateway identifierX-Response-Time- Request durationX-Cache- Cache status (HIT/MISS)
4. Error Handling
Common error codes:
401- Invalid or missing API key429- Rate limit exceeded503- Backend service unavailable
Full Documentation
For complete API documentation, examples, and best practices:
View Full DocumentationAccount Settings
Danger Zone
Once you delete your account, there is no going back. All your data will be permanently deleted.