API ONLINE · OPENAI COMPATIBLE
One endpoint.
The right model.
Ship with capable AI models without rebuilding your stack. Create one key, fund it with crypto, and see every token you spend.
No subscription
1:1 crypto credits
Usage-based billing
LIVE REQUEST PATH
READY
POST
/v1/chat/completions
200
A
Your API keysk-glide-••••••••
model
claude-fable-5
price$0.0793 / 1M input
OPENAI SDK READY◆
STREAMING RESPONSES◆
TOOL CALLING◆
VISION INPUT◆
PREPAID CREDITS
FROM ZERO TO FIRST TOKEN
Three moves.
Then your app is live.
- 01
Create your key
Open an account and generate a key from your portal.
- 02
Add credits
Pay with crypto at a simple 1:1 credit ratio.
- 03
Change one URL
Keep your OpenAI SDK. Point its base URL to GlideAPI.
DROP-IN API
Your existing code already knows what to do.
Use the OpenAI client you already ship. Change the base URL, choose a model, and send the request.
Explore API documentation →from openai import OpenAI
client = OpenAI(
base_url="https://glideapi.dev/v1",
api_key="YOUR_GLIDE_KEY"
)
response = client.chat.completions.create(
model="claude-fable-5",
messages=[{
"role": "user",
"content": "Build something useful."
}]
)
YOUR NEXT REQUEST