rate_limit field somewhere on the route or endpoint config. Common patterns are {"requests": N, "per": "minute"} or middleware-based limiters like express-rate-limit.// Generic example — verify against Acme's actual API app.use('/checkout', rateLimit({ windowMs: 60 * 1000, max: 100, }));You'll want to check Acme's documentation for the specific configuration shape.