Public pricing export
Public endpoint behind the SDK Pricing URL on Manage Models. No API key or session required.
Copy the URL from Manage Models (it includes your database config id), or call:
curl -X GET "/api/pricing/export/<your-db-config-id>"SDK usage
Section titled “SDK usage”Replace the host and database config id with values from your Shield360 deployment and the Manage Models SDK Pricing URL bar.
import shield360
shield360.init( otlp_endpoint="http://<otel-collector-host>:4318", pricing_json="https://<your-shield360-host>/api/pricing/export/<your-db-config-id>",)import shield360 from "shield360";
shield360.init({ otlpEndpoint: "http://<otel-collector-host>:4318", pricingJson: "https://<your-shield360-host>/api/pricing/export/<your-db-config-id>",});package main
import shield360 "github.com/ThinkfleetAI/shield360-go"
func main() { shield360.Init(shield360.Config{ OtlpEndpoint: "http://<otel-collector-host>:4318", PricingJson: "https://<your-shield360-host>/api/pricing/export/<your-db-config-id>", })}