Allocate
Cloud AgentsA fleet that works, in secure sandboxesModelsEvery model behind one keyRecursiveDBWork becomes training signalTrainingYour data becomes your modelMeterEvery token tracked, liveData SecurityIsolated inside your boundary
EnterprisePricing
ChangelogDocsFree toolsGlossary
ModelsSign inTalk to sales
Allocate documentation
QuickstartsYour first inference callUse Allocate from your coding agent
PlatformGatewayRoutesModelsKeysMeter
API referenceCreate a chat completionList models
PlanesPrivate Inference CloudCloudlightCloudheavyLearningAgentsRecursiveDBTraining
Allocate

Regulated cloud inference. An AI model you own and grow, on infrastructure you control.

Product
Cloud AgentsModelsRecursiveDBTrainingMeterData SecurityPricing
Solutions
HealthcareInsuranceFinancial servicesOperationsAgenciesStartupsSouth AfricaGulf region
Resources
ChangelogDocumentationAPI referenceFree toolsGlossarySecurity
Popular models
Gemini 3.5 FlashDeepSeek V4GPT-5.5Qwen 3.5Best open-weight modelsExplore all
Company
EnterpriseAboutCareersContactTalk to sales
© 2026 Allocate. All rights reserved.POPIA ready · security overview

Routes

Name the intent in your code; pin the model on the platform.

A Route is a tenant-prefixed name, like acme/support-chat, that your code sends in the model field. The Gateway resolves it to the model you have pinned server-side.

{ "model": "acme/support-chat", "messages": [...] }

Why route names instead of model ids

Model choice changes more often than application code should. With a Route, flipping a surface to a new model is an API call on the platform, not a pull request in your repo. Your code names the intent; the Route decides the model.

Fallbacks

A Route may declare an ordered fallback list. If the primary model cannot produce output because its provider is down or erroring, the Gateway tries your declared fallbacks in turn, so a single degraded model never fails the call.

This is not a silent swap:

  • The served model is returned in the x-allocate-model response header.
  • Fallbacks are billed at the served model's own price.
  • A fallback only ever fires along the chain you declared. The platform never substitutes a model you did not choose.

Policy always wins

If your organization has a provider policy, it is enforced after route resolution: a request can never reach a provider outside your allowlist, whatever the route or the model field says. See Private Inference Cloud.

PreviousGatewayNextModels
On this pageWhy route names instead of model idsFallbacksPolicy always wins