GET /v1/balance/history
Returns a list of transactions that have contributed to the Stripe account balance (e.g., charges, transfers, and so forth). The transactions are returned in sorted order, with the most recent transactions appearing first.
Note that this endpoint was previously called “Balance history” and used the path /v1/balance/history
.
Servers
- https://api.stripe.com/
Request headers
Name | Type | Required | Description |
---|---|---|---|
Content-Type |
String | Yes |
The media type of the request body.
Default value: "application/x-www-form-urlencoded" |
Query parameters
Name | Type | Required | Description |
---|---|---|---|
source |
String | No |
Only returns the original transaction. |
created |
No |
Only return transactions that were created during the given date interval. |
|
limit |
Integer | No |
A limit on the number of objects to be returned. Limit can range between 1 and 100, and the default is 10. |
payout |
String | No |
For automatic Stripe payouts only, only returns transactions that were paid out on the specified payout ID. |
starting_after |
String | No |
A cursor for use in pagination. |
expand[] |
Array | No |
Specifies which fields in the response should be expanded. |
type |
String | No |
Only returns transactions of the given type. One of: |
ending_before |
String | No |
A cursor for use in pagination. |
currency |
String | No |
Only return transactions in a certain currency. Three-letter ISO currency code, in lowercase. Must be a supported currency. |
How to start integrating
- Add HTTP Task to your workflow definition.
- Search for the API you want to integrate with and click on the name.
- This loads the API reference documentation and prepares the Http request settings.
- Click Test request to test run your request to the API and see the API's response.