{
  "product": "Product Resolver",
  "currency": "USD",
  "modes": [
    {
      "mode": "affiliate_supported",
      "price_per_call": 0,
      "description": "Free resolver call. Returned buying options may include disclosed affiliate-supported links when affiliate programs are connected.",
      "requires_disclosure": true,
      "neutral_option_available": true
    },
    {
      "mode": "neutral_paid",
      "price_per_call": 0.01,
      "description": "Neutral resolver call. No affiliate-supported links are returned. Requires a Product Resolver API key with one available credit.",
      "requires_disclosure": false,
      "neutral_option_available": true
    }
  ],
  "credit_packs": [
    {
      "id": "starter_500",
      "credits": 500,
      "price": 5,
      "checkout_endpoint": "/billing/checkout"
    },
    {
      "id": "builder_2000",
      "credits": 2000,
      "price": 20,
      "checkout_endpoint": "/billing/checkout"
    },
    {
      "id": "operator_10000",
      "credits": 10000,
      "price": 100,
      "checkout_endpoint": "/billing/checkout"
    }
  ],
  "api_key_auth": {
    "headers": ["Authorization: Bearer <key>", "x-api-key: <key>"],
    "balance_endpoint": "/billing/balance",
    "billing_page": "/billing"
  },
  "stripe": {
    "checkout_endpoint": "/billing/checkout",
    "success_endpoint": "/billing/success",
    "webhook_endpoint": "/api/stripe/webhook"
  }
}
