Get started with Gloo AI Studio. This walks you through what to expect when you create an account as well as how you can make your first API call.Documentation Index
Fetch the complete documentation index at: https://docs.gloo.com/llms.txt
Use this file to discover all available pages before exploring further.
Step 1: Create Your Account & Organization
Start by creating your account at Gloo AI Studio. Once your email is verified, the onboarding wizard will guide you through setting up your organization:- Create your Organization: Give your team a name to manage projects and collaboration.
- Invite your Team: (Optional) Add email addresses to invite collaborators immediately, or skip this step.
As the account creator, you are the Organization Admin. You can invite team members, create Publishers, and manage your organization at any time from the Studio sidebar. See the Admin Quickstart for a full walkthrough.
Step 2: Set Up Billing & Spend Limits
To enable API access, you must set up a Pay-As-You-Go plan.- Add a Payment Method: Enter your credit card details to enable API usage. You are only charged for what you use.
- Set a Spend Limit: You can define a weekly spending limit (e.g., $50/week) to control costs. If you don’t set a limit, you’ll be capped at $100/week which is also the maximum you can spend in a week for the Pay-As-You-Go plan.
If you skip billing: You can select “I’ll do this later”, but your account will be restricted to the Studio Playground (web interface only). You will not be able to make API calls until a payment method is added.
Step 3: Create Your API Credentials
The Gloo AI APIs use OAuth2 client credentials flow for authentication. To make an API call, you:- Get API Credentials (Client ID and Client Secret) from Gloo AI Studio
- Use those credentials to get a short-lived access token
- Use the access token to authenticate your API calls
- Repeat step (2) whenever the access token expires
- Navigate to API Credentials in the Studio Dashboard.
- Copy the Client ID and Client Secret values if there are existing credentials, otherwise go to the next step.
- Click Create New Key to generate a Client ID and Client Secret.
Step 4: Generate an Access Token
Once you have a Client ID and Client Secret, you can generate an access token using one of the following methods:Access tokens expire after one hour. Monitor the token’s expiration by checking the ‘exp’ claim in the JWT payload. Since refresh tokens are not provided with client credentials, you will need to request a new access token when the current one expires.
Step 5: Make An API Call
Using theget_access_token function from Step 4, make a call to the Completions API.
Next Steps
Libraries & SDKs
Use the OpenAI Python or Node.js SDK with Gloo AI to skip the manual token exchange code.
Supported Models
Explore all available models and their capabilities.

