action change_get_api_v1_donations_crypto_calculate { label: "Calculate crypto carbon offset" description: "Calculates the donation amount (to CarbonFund 501\\(c\\)3) needed to offset a cryptocurrency transaction. For convenience, this endpoint also returns the id of the nonprofit CarbonFund, for making a subsequent donation to. See the [Carbon offsets guide](/recipes/carbon-offsets/) for more on using this endpoint." provider: change method: GET path: "/api/v1/donations/crypto_calculate" encoding: json input: { type: "object" properties: { count: { type: "number" } currency: { type: "string" enum: ["eth", "btc"] } } required: ["currency"] additionalProperties: false } output: { type: "object" additionalProperties: true } }