Skip to main content
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>'
{
  "dollarPerCredit": 0.01,
  "minCredits": 500,
  "maxCredits": 1000000,
  "costs": [
    {
      "endpoint": "/ask",
      "operation": "Ask (Standard)",
      "credits": 15,
      "usdCost": 0.15,
      "description": "AI-powered legal Q&A. Returns a grounded answer with source citations from millions of court opinions.",
      "category": "ask",
      "regions": [
        "US",
        "IN"
      ]
    },
    {
      "endpoint": "/statutes/search",
      "operation": "US Statutes Search",
      "credits": 4,
      "usdCost": 0.04,
      "description": "Search the United States Code (USC) and CFR.",
      "category": "statutes",
      "regions": [
        "US"
      ]
    }
  ]
}

Documentation Index

Fetch the complete documentation index at: https://vaquill.ai/docs/llms.txt

Use this file to discover all available pages before exploring further.

Authorizations

Authorization
string
header
required

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.

dollarPerCredit
number
required

USD cost per 1 credit (0.01 means 1 credit = $0.01).

Example:

0.01

minCredits
number
required

Minimum credits per purchase.

Example:

500

maxCredits
number
required

Maximum credits per purchase.

Example:

1000000

costs
ApiCreditCostResponse · object[]
required

Per-endpoint credit costs (USD).