One integration, multiple capabilities
Use one familiar request format across supported model classes. Change models without rebuilding your application layer.
spk-smallEconomyspk-proStandardspk-ultraPremiumConnect your product to reliable AI inference through a unified, developer-first interface. Integrate once, route intelligently, and ship with confidence.
Everything your team needs to move from prototype to production without maintaining separate integrations for every model provider.
Use one familiar request format across supported model classes. Change models without rebuilding your application layer.
spk-smallEconomyspk-proStandardspk-ultraPremiumRequests move through the available inference path with fallback support designed into the gateway.
Bearer-token authentication keeps integration simple while allowing access to be managed per customer.
Plan-based quotas and rate limits make capacity predictable for developers and growing teams.
Point compatible SDKs at the SprinkleAI base URL and keep the workflow your team already knows.
A focused integration path gives your team a clear route into production.
Select the capacity and model access that fits your workload.
Add the API base URL and your bearer token to a compatible SDK.
Use a standard chat-completions format and select a model alias.
curl https://sprinkai.com/v1/chat/completions \
-H "Authorization: Bearer $SPRINKLE_API_KEY" \
-H "Content-Type: application/json" \
-d '{
"model": "spk-pro",
"messages": [{
"role": "user",
"content": "Build something remarkable."
}]
}'
from openai import OpenAI
client = OpenAI(
api_key=os.environ["SPRINKLE_API_KEY"],
base_url="https://sprinkai.com/v1"
)
response = client.chat.completions.create(
model="spk-pro",
messages=[{"role": "user", "content": "Hello"}]
)
const client = new OpenAI({
apiKey: process.env.SPRINKLE_API_KEY,
baseURL: 'https://sprinkai.com/v1'
});
const response = await client.chat.completions.create({
model: 'spk-pro',
messages: [{ role: 'user', content: 'Hello' }]
});
Transparent monthly access passes with manual renewal. No unexpected recurring charge.
Start with a monthly access pass or speak with us about a tailored deployment.