Lit Protocol · Schema

StripeConfigResponse

GET /billing/stripe_config — returns the Stripe publishable key for Stripe.js.

Web3Key ManagementMPCProgrammable KeysLit Actions

Properties

Name Type Description
publishable_key string
View JSON Schema on GitHub

JSON Schema

lit-protocol-stripeconfigresponse-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/StripeConfigResponse",
  "title": "StripeConfigResponse",
  "description": "GET /billing/stripe_config \u2014 returns the Stripe publishable key for Stripe.js.",
  "type": "object",
  "required": [
    "publishable_key"
  ],
  "properties": {
    "publishable_key": {
      "type": "string"
    }
  }
}