Skip to main content

Endpoint

GET /v1/billing/pricing
No authentication required. Returns current credit pricing and per-operation costs.

Response

{
  "creditPriceUsd": 0.01,
  "operationCosts": {
    "memory.write": 5,
    "memory.read": 1,
    "memory.update": 5,
    "memory.delete": 2,
    "media.upload": 5,
    "media.stream": 1,
    "media.delete": 2,
    "agent.create": 10,
    "bulk.write": 5,
    "search": 1
  },
  "note": "Costs are in credits. 1 credit = $0.0100 USD."
}

Fields

FieldTypeDescription
creditPriceUsdnumberUSD value of one credit
operationCostsobjectMap of operation → credit cost
notestringHuman-readable pricing summary
Operation costs are configurable by the platform admin via PlatformConfig. The defaults shown above may differ from the live values.
Media metadata and listing are free. The media.stream cost only applies to GET /v1/media/:id/stream (actual Shelby reads). Listing media (GET /v1/media) and fetching metadata (GET /v1/media/:id) do not consume credits.