Full pricing matrix
curl --request GET \
--url https://api.tryhuntr.com/pricingimport requests
url = "https://api.tryhuntr.com/pricing"
response = requests.get(url)
print(response.text)const options = {method: 'GET'};
fetch('https://api.tryhuntr.com/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.tryhuntr.com/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.tryhuntr.com/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.tryhuntr.com/pricing")
.asString();require 'uri'
require 'net/http'
url = URI("https://api.tryhuntr.com/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{
"tiers": {
"lite": {
"default_model": "gemini-2.5-flash",
"default_price": 0.018
},
"standard": {
"default_model": "gemini-2.5-flash",
"default_price": 0.027
},
"deep": {
"default_model": "gemini-2.5-flash",
"default_price": 0.046
}
},
"endpoints": {
"tech_stack": {
"price": 0.012,
"description": "POST /company-tech-stack"
},
"linkedin_company": {
"price": 0.002,
"description": "POST /company-linkedin"
},
"company_search": {
"price_per_result": 0.0003,
"description": "POST /company-search"
}
},
"models": {
"gpt-4o-mini": {
"lite": 0.015,
"standard": 0.022,
"deep": 0.039
},
"gemini-2.5-flash": {
"lite": 0.018,
"standard": 0.027,
"deep": 0.046
}
}
}Account
Full pricing matrix
No auth required.
Returns current tier prices, per-model prices, and standalone endpoint prices.
GET
/
pricing
Full pricing matrix
curl --request GET \
--url https://api.tryhuntr.com/pricingimport requests
url = "https://api.tryhuntr.com/pricing"
response = requests.get(url)
print(response.text)const options = {method: 'GET'};
fetch('https://api.tryhuntr.com/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.tryhuntr.com/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.tryhuntr.com/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.tryhuntr.com/pricing")
.asString();require 'uri'
require 'net/http'
url = URI("https://api.tryhuntr.com/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{
"tiers": {
"lite": {
"default_model": "gemini-2.5-flash",
"default_price": 0.018
},
"standard": {
"default_model": "gemini-2.5-flash",
"default_price": 0.027
},
"deep": {
"default_model": "gemini-2.5-flash",
"default_price": 0.046
}
},
"endpoints": {
"tech_stack": {
"price": 0.012,
"description": "POST /company-tech-stack"
},
"linkedin_company": {
"price": 0.002,
"description": "POST /company-linkedin"
},
"company_search": {
"price_per_result": 0.0003,
"description": "POST /company-search"
}
},
"models": {
"gpt-4o-mini": {
"lite": 0.015,
"standard": 0.022,
"deep": 0.039
},
"gemini-2.5-flash": {
"lite": 0.018,
"standard": 0.027,
"deep": 0.046
}
}
}Response
200 - application/json
Full pricing matrix.
Per-tier info using the default synthesis model.
Show child attributes
Show child attributes
Price per model per tier. Keys are model IDs (e.g. 'gpt-5', 'claude-opus-4.7'). Use these to pick a model override and know exactly what you'll pay.
Show child attributes
Show child attributes
Standalone endpoint prices and descriptions.
Show child attributes
Show child attributes
⌘I