List pricing
curl --request GET \
--url https://api.overshoot.ai/billing/pricingimport requests
url = "https://api.overshoot.ai/billing/pricing"
response = requests.get(url)
print(response.text)const options = {method: 'GET'};
fetch('https://api.overshoot.ai/billing/pricing', 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.overshoot.ai/billing/pricing",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "GET",
]);
$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.overshoot.ai/billing/pricing"
req, _ := http.NewRequest("GET", url, nil)
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.overshoot.ai/billing/pricing")
.asString();require 'uri'
require 'net/http'
url = URI("https://api.overshoot.ai/billing/pricing")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Get.new(url)
response = http.request(request)
puts response.read_body[
{
"id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
"model": "google/gemma-4-26B-A4B-it",
"provider": "google",
"version": "2026-06-01",
"input_microcents_per_token": 10,
"output_microcents_per_token": 40,
"public": true,
"cached_input_microcents_per_token": 2
}
]Models & pricing
List pricing
List public model prices. No auth required. Money fields use integer microcents:
1 cent = 1,000,000 microcents.
GET
/
billing
/
pricing
List pricing
curl --request GET \
--url https://api.overshoot.ai/billing/pricingimport requests
url = "https://api.overshoot.ai/billing/pricing"
response = requests.get(url)
print(response.text)const options = {method: 'GET'};
fetch('https://api.overshoot.ai/billing/pricing', 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.overshoot.ai/billing/pricing",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "GET",
]);
$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.overshoot.ai/billing/pricing"
req, _ := http.NewRequest("GET", url, nil)
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.overshoot.ai/billing/pricing")
.asString();require 'uri'
require 'net/http'
url = URI("https://api.overshoot.ai/billing/pricing")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Get.new(url)
response = http.request(request)
puts response.read_body[
{
"id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
"model": "google/gemma-4-26B-A4B-it",
"provider": "google",
"version": "2026-06-01",
"input_microcents_per_token": 10,
"output_microcents_per_token": 40,
"public": true,
"cached_input_microcents_per_token": 2
}
]Response
200 - application/json
List of public prices.
Example:
"google/gemma-4-26B-A4B-it"
Example:
"google"
Example:
"2026-06-01"
Example:
10
Example:
40
Example:
true
Example:
2
⌘I