Browse all available AI models with pricing, capabilities, and context windows
import Casedev from 'casedev'; const client = new Casedev({ apiKey: 'sk_case_YOUR_API_KEY' }); const response = await client.llm.v1.chat.createCompletion({ model: 'anthropic/claude-sonnet-4.5', messages: [{ role: 'user', content: 'Hello!' }] }); console.log(response.choices[0].message.content);
import Casedev from 'casedev'; const client = new Casedev({ apiKey: 'sk_case_YOUR_API_KEY' }); const { data: models } = await client.llm.v1.listModels(); for (const model of models) { console.log(`${model.id}: $${model.pricing.input}/input, $${model.pricing.output}/output`); }
Was this page helpful?
Contact support