v5

latestOpenAPI 3.1.02026-08-025631,1012.8 MB
Organization Billing

Get Vector Backend Usage

Get vector backend usage breakdown.

Returns usage dimensions (vectors stored, storage, queries, writes) and cost breakdown for the tenant's active vector backend. Works for all backends: qdrant, mvs, and dual_write.

Requirements:

  • Read permission
get/v1/organizations/billing/usage/vector-backend

Query parameters

billing_monthstring nullable

Billing month in YYYY-MM format (defaults to current month)

Example:2026-05

Billing month in YYYY-MM format (defaults to current month)

Response

Successful Response

vector_backendstring required

Active vector backend for this tenant

billing_monthstring required

Billing month (YYYY-MM)

namespace_countinteger required

Number of namespaces billed

vectors_storedinteger required

Total vectors stored across all namespaces

storage_bytesinteger required

Total storage bytes

queriesinteger required

Total search queries in billing period

writesinteger required

Total writes in billing period

total_creditsinteger required

Total credits for vector backend usage

total_cost_usdnumber required

Total cost in USD

Example response

{
  "vector_backend": "mvs",
  "billing_month": "2026-05",
  "cost_breakdown": {
    "backend": "mvs"
  }
}