Get API credit pricing
curl --request GET \
--url https://api.vaquill.ai/api/v1/api-credits/pricing \
--header 'Authorization: Bearer <token>'import requests
url = "https://api.vaquill.ai/api/v1/api-credits/pricing"
headers = {"Authorization": "Bearer <token>"}
response = requests.get(url, headers=headers)
print(response.text)const options = {method: 'GET', headers: {Authorization: 'Bearer <token>'}};
fetch('https://api.vaquill.ai/api/v1/api-credits/pricing', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));package main
import (
"fmt"
"net/http"
"io"
)
func main() {
url := "https://api.vaquill.ai/api/v1/api-credits/pricing"
req, _ := http.NewRequest("GET", url, nil)
req.Header.Add("Authorization", "Bearer <token>")
res, _ := http.DefaultClient.Do(req)
defer res.Body.Close()
body, _ := io.ReadAll(res.Body)
fmt.Println(string(body))
}{
"dollarPerCredit": 0.01,
"minCredits": 500,
"maxCredits": 1000000,
"costs": [
{
"endpoint": "/us/statutes/search",
"operation": "US Statutes Search",
"credits": 4,
"usdCost": 0.04,
"description": "Search the United States Code (USC) and CFR.",
"category": "statutes",
"regions": [
"US"
]
}
]
}{
"detail": "Rate limit exceeded. Retry after 12 seconds."
}Get API credit pricing
Returns the credit-to-price conversion rate and per-endpoint credit costs.
No authentication required. This endpoint is public and rate-limited only.
1 credit = $0.01 USD. All API billing is in USD via Dodo Payments.
Pricing Overview
| Endpoint | Operation | Credits | USD |
|---|---|---|---|
/us/statutes/search | US Statutes Search | 4 | $0.04 |
/us/statutes/section | US Statute Section (Metadata) | 2 | $0.02 |
/us/statutes/section/body | US Statute Section (Full Text) | 6 | $0.06 |
Example
curl https://api.vaquill.ai/api/v1/api-credits/pricing
GET
/
api
/
v1
/
api-credits
/
pricing
Get API credit pricing
curl --request GET \
--url https://api.vaquill.ai/api/v1/api-credits/pricing \
--header 'Authorization: Bearer <token>'import requests
url = "https://api.vaquill.ai/api/v1/api-credits/pricing"
headers = {"Authorization": "Bearer <token>"}
response = requests.get(url, headers=headers)
print(response.text)const options = {method: 'GET', headers: {Authorization: 'Bearer <token>'}};
fetch('https://api.vaquill.ai/api/v1/api-credits/pricing', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));package main
import (
"fmt"
"net/http"
"io"
)
func main() {
url := "https://api.vaquill.ai/api/v1/api-credits/pricing"
req, _ := http.NewRequest("GET", url, nil)
req.Header.Add("Authorization", "Bearer <token>")
res, _ := http.DefaultClient.Do(req)
defer res.Body.Close()
body, _ := io.ReadAll(res.Body)
fmt.Println(string(body))
}{
"dollarPerCredit": 0.01,
"minCredits": 500,
"maxCredits": 1000000,
"costs": [
{
"endpoint": "/us/statutes/search",
"operation": "US Statutes Search",
"credits": 4,
"usdCost": 0.04,
"description": "Search the United States Code (USC) and CFR.",
"category": "statutes",
"regions": [
"US"
]
}
]
}{
"detail": "Rate limit exceeded. Retry after 12 seconds."
}Authorizations
Bearer authentication header of the form Bearer <token>, where <token> is your auth token.
Response
Pricing matrix returned successfully
Full pricing information for the API credit system. USD only.
USD cost per 1 credit (0.01 means 1 credit = $0.01).
Example:
0.01
Minimum credits per purchase.
Example:
500
Maximum credits per purchase.
Example:
1000000
Per-endpoint credit costs (USD).
Show child attributes
Show child attributes
Last modified on June 26, 2026
Was this page helpful?

