Retrieve a list of all available language models from 40+ providers including OpenAI, Anthropic, Google, and Case.dev’s specialized legal models. Returns OpenAI-compatible model metadata with pricing information.
This endpoint is compatible with OpenAI’s models API format, making it easy to integrate with existing applications.
curl --request GET \
--url https://api.case.dev/llm/v1/models \
--header 'Authorization: Bearer <token>'{
"data": [
{
"id": "casemark/contract-analyzer",
"object": "model",
"created": 1678886400,
"owned_by": "casemark",
"pricing": {
"input": "0.000001000",
"output": "0.000003000"
}
},
{
"id": "gpt-4o",
"object": "model",
"created": 1678886400,
"owned_by": "openai",
"pricing": {
"input": "0.000005000",
"output": "0.000015000"
}
},
{
"id": "claude-3-5-sonnet-20241022",
"object": "model",
"created": 1678886400,
"owned_by": "anthropic",
"pricing": {
"input": "0.000003000",
"output": "0.000015000",
"input_cache_read": "0.000000300"
}
}
],
"object": "list"
}Was this page helpful?
curl --request GET \
--url https://api.case.dev/llm/v1/models \
--header 'Authorization: Bearer <token>'{
"data": [
{
"id": "casemark/contract-analyzer",
"object": "model",
"created": 1678886400,
"owned_by": "casemark",
"pricing": {
"input": "0.000001000",
"output": "0.000003000"
}
},
{
"id": "gpt-4o",
"object": "model",
"created": 1678886400,
"owned_by": "openai",
"pricing": {
"input": "0.000005000",
"output": "0.000015000"
}
},
{
"id": "claude-3-5-sonnet-20241022",
"object": "model",
"created": 1678886400,
"owned_by": "anthropic",
"pricing": {
"input": "0.000003000",
"output": "0.000015000",
"input_cache_read": "0.000000300"
}
}
],
"object": "list"
}