工具 API

stripe_api_read

Read data from any Stripe API GET operation: 1. Use stripe_api_search to find the operation ID. 2. Use stripe_api_details to understand its parameters (required for operations with nested object fields like address, metadata, or restrictions). 3. Call this tool with the stripe_api_operation_id and a parameters object containing path and query parameters. For mutations (POST/PATCH/PUT/DELETE), use stripe_api_write instead. Monetary values in responses are in the smallest currency unit (e.g. 1000 = $10.00 USD for most currencies).

financeOAuth1 积分

调用信息

工具标识
stripe-mcp.stripe_api_read
服务提供方
Stripe
平均响应
0 ms
近 7 天调用
0

输入参数

stripe_api_operation_id必填

The operation ID to execute

parameters必填

Parameters for the API call. Include path parameters (e.g. 'customer' for /v1/customers/{customer}), query parameters, and body parameters. Array fields (e.g. line_items) must be passed as a JSON array value, not as a plain string.

stripe_context必填

The account to target for this request. Use the `stripe_context` value returned by list_available_accounts_or_orgs.

livemode必填

Whether to operate in livemode (true) or test mode/ sandbox (false). Must match the livemode of the stripe_context account.