← Back to Knowledge Base

Safe Automation & Batch API Usage Guidelines

1. Batch Call Frequency Control & Rate Limiting

Anthropic enforces organization-level rate limits. Design automation systems to respect these limits and avoid triggering anti-abuse classifiers:

Rate Limit Tiers (As of 2026-08)

Account Tier RPM (Requests/Min) TPM (Tokens/Min) Daily Token Limit
Free Tier 5 40,000 50,000
Pro Tier 50 200,000 5,000,000
Team Tier 100 400,000 10,000,000
Enterprise Custom Custom Negotiated

Adaptive Rate Limiter Implementation

class AdaptiveRateLimiter {
  private requestQueue: Array<() => Promise> = [];
  private activeRequests = 0;
  private maxConcurrency: number;
  private minDelay: number; // ms between requests
  
  constructor(rpm: number, maxConcurrency = 5) {
    this.maxConcurrency = maxConcurrency;
    this.minDelay = (60 / rpm) * 1000;
  }
  
  async execute(fn: () => Promise): Promise {
    while (this.activeRequests >= this.maxConcurrency) {
      await new Promise(resolve => setTimeout(resolve, 100));
    }
    
    this.activeRequests++;
    try {
      const result = await fn();
      await new Promise(resolve => setTimeout(resolve, this.minDelay));
      return result;
    } catch (error: any) {
      if (error.status === 429) {
        // Rate limit hit, exponential backoff
        const retryAfter = error.headers?.['retry-after'] || 60;
        await new Promise(resolve => setTimeout(resolve, retryAfter * 1000));
        return this.execute(fn); // Retry
      }
      throw error;
    } finally {
      this.activeRequests--;
    }
  }
}

// Usage
const limiter = new AdaptiveRateLimiter(50); // 50 RPM for Pro tier
const results = await Promise.all(
  prompts.map(prompt => limiter.execute(() => callClaude(prompt)))
);

2. Anti-Abuse Detection Avoidance

Anthropic's backend classifiers detect patterns indicative of model distillation or unauthorized scraping. Mimic human-like behavior to avoid flags:

Human Behavior Simulation Techniques

  • Prompt Variation: Add natural language variability to prompts. Avoid sending 1000 near-identical requests.
  • Jitter Injection: Randomize delays between requests (e.g., 100-3000ms uniform distribution).
  • Session Boundaries: Batch work into sessions of 20-50 requests, separated by 5-10 minute breaks.
  • Output Length Variation: Vary max_tokens across requests to avoid fixed-length output patterns.

Prompt Variation Example

const templates = [
  "Refactor this code:
{code}",
  "Can you improve this function?
{code}",
  "Please optimize:
{code}",
  "How would you rewrite this?
{code}",
];

function varyPrompt(code: string): string {
  const template = templates[Math.floor(Math.random() * templates.length)];
  const prefix = Math.random() > 0.5 ? "Here's my code: " : "";
  return prefix + template.replace("{code}", code);
}

3. Multi-Account Polling & Load Balancing

Distribute high-volume workloads across multiple Claude accounts to avoid per-organization rate limits and reduce distillation risk:

Round-Robin Load Balancer

class MultiAccountBalancer {
  private accounts: Array<{ apiKey: string; weight: number }>;
  private currentIndex = 0;
  private requestCounts: Map = new Map();
  
  constructor(accounts: Array<{ apiKey: string; weight?: number }>) {
    this.accounts = accounts.map(acc => ({ 
      apiKey: acc.apiKey, 
      weight: acc.weight || 1 
    }));
  }
  
  getNextAccount(): string {
    // Weighted round-robin selection
    const totalWeight = this.accounts.reduce((sum, acc) => sum + acc.weight, 0);
    let random = Math.random() * totalWeight;
    
    for (const account of this.accounts) {
      random -= account.weight;
      if (random <= 0) {
        this.requestCounts.set(account.apiKey, 
          (this.requestCounts.get(account.apiKey) || 0) + 1);
        return account.apiKey;
      }
    }
    
    return this.accounts[0].apiKey;
  }
  
  getStats(): Record {
    return Object.fromEntries(this.requestCounts);
  }
}

// Usage
const balancer = new MultiAccountBalancer([
  { apiKey: "sk-ant-api03-...", weight: 2 }, // Pro account, higher weight
  { apiKey: "sk-ant-api04-...", weight: 1 }, // Free account, lower weight
]);

async function callWithBalancing(prompt: string) {
  const apiKey = balancer.getNextAccount();
  return await anthropic.messages.create({
    apiKey,
    model: "claude-sonnet-4.5-high",
    messages: [{ role: "user", content: prompt }],
  });
}

4. Audit Logging & Compliance Checklist

Maintain comprehensive logs of automation activity for compliance audits and debugging:

Audit Log Schema

interface AuditLog {
  timestamp: string;
  accountId: string;
  requestId: string;
  model: string;
  inputTokens: number;
  outputTokens: number;
  cacheHit: boolean;
  latencyMs: number;
  statusCode: number;
  errorMessage?: string;
  sourceIP: string;
  userAgent: string;
}

// Log every API call
async function auditedCall(prompt: string): Promise {
  const start = Date.now();
  try {
    const response = await anthropic.messages.create({...});
    
    await logAudit({
      timestamp: new Date().toISOString(),
      accountId: "org-123",
      requestId: response.id,
      model: response.model,
      inputTokens: response.usage.input_tokens,
      outputTokens: response.usage.output_tokens,
      cacheHit: response.usage.cache_read_input_tokens > 0,
      latencyMs: Date.now() - start,
      statusCode: 200,
      sourceIP: await getPublicIP(),
      userAgent: "my-automation/1.0",
    });
    
    return response;
  } catch (error: any) {
    await logAudit({
      timestamp: new Date().toISOString(),
      statusCode: error.status || 500,
      errorMessage: error.message,
      latencyMs: Date.now() - start,
      ...
    });
    throw error;
  }
}

Compliance Self-Audit Checklist

  • All automated requests use API keys, not stolen session tokens
  • Automation respects Anthropic's rate limits (no aggressive bypass attempts)
  • Output is used for internal tooling, not resale or public model training
  • Logs retained for 90 days for audit trail
  • Residential IPs used for API traffic (no datacenter IPs for high-volume automation)
  • No prompt injection attacks or jailbreak attempts in automated workflows