API Documentation

Quick Integration Guide

Standard OpenAI API format compatible. Replace Base URL & API Key to connect.

Base URL
https://api.metartr.com/v1
from openai import OpenAI

# Initialize client with MetaRtr base URL and API key
client = OpenAI(
    api_key="sk-metartr-your-api-key",
    base_url="https://api.metartr.com/v1"
)

# Create chat completion request
response = client.chat.completions.create(
    model="claude-3-5-sonnet",
    messages=[
        {"role": "user", "content": "Hello! How can I help you today?"}
    ]
)

print(response.choices[0].message.content)

High Availability & Failover

Automatic failover with 99.9% uptime SLA.

Zero-Log Privacy

Strict zero-log policy. Conversation data is never stored.

Pay As You Go

No monthly subscriptions. Pay purely per token consumed.