Access to the best OSS models for the cheapest prices on the market
Drop-in replacement for the OpenAI SDK. Change your base URL and you're live.
Pay per token with no hidden costs, or subscribe for a flat daily request allowance.
A curated selection of top open-weight and proprietary LLMs, including vision and reasoning.
Create named keys per project. Revoke individually without disrupting other integrations.
Monitor token usage by model, track credits, and manage your plan from one place.
from openai import OpenAI client = OpenAI( base_url="https://crof.ai/v1", api_key="your-api-key", ) response = client.chat.completions.create( model="glm-5", messages=[{"role": "user", "content": "Hello!"}], ) print(response.choices[0].message.content)