List LLMs
curl --request GET \
--url https://api.zeptar.com/v1/llm/list \
--cookie better-auth.session_token=import requests
url = "https://api.zeptar.com/v1/llm/list"
headers = {"cookie": "better-auth.session_token="}
response = requests.get(url, headers=headers)
print(response.text)const options = {method: 'GET', headers: {cookie: 'better-auth.session_token='}};
fetch('https://api.zeptar.com/v1/llm/list', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));<?php
$curl = curl_init();
curl_setopt_array($curl, [
CURLOPT_URL => "https://api.zeptar.com/v1/llm/list",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "GET",
CURLOPT_COOKIE => "better-auth.session_token=",
]);
$response = curl_exec($curl);
$err = curl_error($curl);
curl_close($curl);
if ($err) {
echo "cURL Error #:" . $err;
} else {
echo $response;
}package main
import (
"fmt"
"net/http"
"io"
)
func main() {
url := "https://api.zeptar.com/v1/llm/list"
req, _ := http.NewRequest("GET", url, nil)
req.Header.Add("cookie", "better-auth.session_token=")
res, _ := http.DefaultClient.Do(req)
defer res.Body.Close()
body, _ := io.ReadAll(res.Body)
fmt.Println(string(body))
}HttpResponse<String> response = Unirest.get("https://api.zeptar.com/v1/llm/list")
.header("cookie", "better-auth.session_token=")
.asString();require 'uri'
require 'net/http'
url = URI("https://api.zeptar.com/v1/llm/list")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Get.new(url)
request["cookie"] = 'better-auth.session_token='
response = http.request(request)
puts response.read_body{
"llms": [
{
"llm": "gpt-5.2-chat-latest",
"is_checkpoint": false,
"provider": "openai",
"display_name": "GPT-5.2 Chat",
"max_tokens_limit": 16384,
"max_context_limit": 128000,
"supports_image_input": true,
"supports_document_input": true,
"supports_parallel_tool_calls": true,
"available_reasoning_efforts": [
"low",
"medium",
"high"
],
"deprecation_info": null,
"latency_hint_ms": 900,
"cost_hint_per_min": 0.015
}
],
"default_deprecation_config": {
"warning_start_days": 30,
"fallback_start_days": 60,
"fallback_complete_days": 90,
"fallback_start_percentage": 10,
"fallback_complete_percentage": 100
}
}LLMs
List LLMs
GET
/
v1
/
llm
/
list
List LLMs
curl --request GET \
--url https://api.zeptar.com/v1/llm/list \
--cookie better-auth.session_token=import requests
url = "https://api.zeptar.com/v1/llm/list"
headers = {"cookie": "better-auth.session_token="}
response = requests.get(url, headers=headers)
print(response.text)const options = {method: 'GET', headers: {cookie: 'better-auth.session_token='}};
fetch('https://api.zeptar.com/v1/llm/list', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));<?php
$curl = curl_init();
curl_setopt_array($curl, [
CURLOPT_URL => "https://api.zeptar.com/v1/llm/list",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "GET",
CURLOPT_COOKIE => "better-auth.session_token=",
]);
$response = curl_exec($curl);
$err = curl_error($curl);
curl_close($curl);
if ($err) {
echo "cURL Error #:" . $err;
} else {
echo $response;
}package main
import (
"fmt"
"net/http"
"io"
)
func main() {
url := "https://api.zeptar.com/v1/llm/list"
req, _ := http.NewRequest("GET", url, nil)
req.Header.Add("cookie", "better-auth.session_token=")
res, _ := http.DefaultClient.Do(req)
defer res.Body.Close()
body, _ := io.ReadAll(res.Body)
fmt.Println(string(body))
}HttpResponse<String> response = Unirest.get("https://api.zeptar.com/v1/llm/list")
.header("cookie", "better-auth.session_token=")
.asString();require 'uri'
require 'net/http'
url = URI("https://api.zeptar.com/v1/llm/list")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Get.new(url)
request["cookie"] = 'better-auth.session_token='
response = http.request(request)
puts response.read_body{
"llms": [
{
"llm": "gpt-5.2-chat-latest",
"is_checkpoint": false,
"provider": "openai",
"display_name": "GPT-5.2 Chat",
"max_tokens_limit": 16384,
"max_context_limit": 128000,
"supports_image_input": true,
"supports_document_input": true,
"supports_parallel_tool_calls": true,
"available_reasoning_efforts": [
"low",
"medium",
"high"
],
"deprecation_info": null,
"latency_hint_ms": 900,
"cost_hint_per_min": 0.015
}
],
"default_deprecation_config": {
"warning_start_days": 30,
"fallback_start_days": 60,
"fallback_complete_days": 90,
"fallback_start_percentage": 10,
"fallback_complete_percentage": 100
}
}Authorizations
Session cookie set by auth.api.signInEmail (or the OAuth flow). Forwarded automatically by the browser; copy via document.cookie for server-to-server calls during development.
⌘I