Create price
documentedCreate a price for a product.
POST /v1/pricesProductsno implementation yet0 runsNo implementation yet. Run it to have the agent write one, or open a pull request with your own.
Seed example (keychains curl)
npx -y keychains@latest curl "https://api.stripe.com/v1/prices" \
-X POST \
-H "Authorization: Bearer {{STRIPE_API_KEY}}" \
-H "Content-Type: application/json" \
-H "Accept: application/json" \
-d '{"product": "{{$product_id}}", "unit_amount": {{$unit_amount}}, "currency": "{{$currency}}", "recurring": {"interval": "{{$interval}}"}, "lookup_key": "{{$lookup_key}}", "nickname": "{{$nickname}}"}'