Usage
Prerequisites
- Unbound account — Sign up at gateway.getunbound.ai
- API Key — Get yours at gateway.getunbound.ai/connect
Installing the SDK
Making a Request to Unbound
Unbound fully adheres to a familiar SDK signature. You can instantly switch to Unbound and start using our production features right out of the box. Just replace your existing import withfrom unbound import Unbound:
chat_completion is a plain Python dict matching the Chat Completions API response, not a typed Pydantic model. Access fields by key — for example chat_completion["choices"][0]["message"]["content"].Async Usage
UseAsyncUnbound instead of Unbound with await:

