Beamlit APIs allow you to interact with all resources inside of and across your workspace(s).

Get started

Authentication to the Beamlit APIs can either be done using API keys created from the Beamlit console, or through a classic OAuth 2.0 flow.

API keys allow you to get started quickly. Simply generate an API key for your user or service account and use the API key as a bearer token in place of the authorization headers Authorization or X-Beamlit-Authorization in any call to the Beamlit APIs.

For example, to list models:

curl 'https://api.beamlit.com/v0/models' \
  -H 'accept: application/json, text/plain, */*' \
  -H 'X-Beamlit-Authorization: Bearer YOUR-API-KEY'

To use short-lived JWTs, see the guide on using an OAuth 2.0 flow.

Beamlit APIs

See the reference for any of the following APIs:

Inference API

Run inference requests on your deployments by API.

Management API

API to manage environments, policies, agents, functions and much more.