Dashboard Overview

Current Plan
Free
10,000 requests/month
Requests This Month
0
10,000 remaining
Success Rate
100%
↑ Excellent
Avg Response Time
--ms
Last 24 hours

Monthly Usage

0 / 10,000 requests used

Quick Actions

Your API Keys

Manage your API keys for authentication. Keep them secure!

Production Key
Created: Today
Active
••••••••••••••••••••••••••••••••••••••••
Last Used
Never
Total Requests
0
Rate Limit
60/min
⚠️
Keep your API key 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:

Node.js / JavaScript
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));
Python
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

Total Requests
0
Successful
0
Failed
0
Cached
0
💡
Choose the right plan for your needs

All plans include SSL, global CDN, analytics, and 24/7 support.

Free

$0/month
  • 10,000 requests/month
  • 60 requests/minute
  • Community support
  • Email support (48hr)
  • Basic analytics

Basic

$29/month
  • 100,000 requests/month
  • 100 requests/minute
  • Priority email support (24hr)
  • Advanced analytics
  • Custom domains
  • Request caching

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 identifier
  • X-Response-Time - Request duration
  • X-Cache - Cache status (HIT/MISS)

4. Error Handling

Common error codes:

  • 401 - Invalid or missing API key
  • 429 - Rate limit exceeded
  • 503 - Backend service unavailable

Full Documentation

For complete API documentation, examples, and best practices:

View Full Documentation

Account Settings

Danger Zone

⚠️
Delete Account

Once you delete your account, there is no going back. All your data will be permanently deleted.