Money

Get transactions

Lists transaction history. Provide either starting_after_cursor or ending_before_cursor (not both) for cursor-based pagination.

get/v1/transactions

Query parameters

limitinteger

Number of transactions to return (1-100, default 10)

after_timeinteger

Filter for transactions after this UNIX timestamp (exclusive)

before_timeinteger

Filter for transactions before this UNIX timestamp (exclusive)

starting_after_cursorstring

string with format 'txc_base62_encoded_id' used for paginating a query to GET /v1/transactions

Cursor for forward pagination

ending_before_cursorstring

string with format 'txc_base62_encoded_id' used for paginating a query to GET /v1/transactions

Cursor for backward pagination

sort'transaction_time' | '-transaction_time' | 'amount' | '-amount'

Sort field. Prefix with - for descending order. Default: -transaction_time. Valid sort fields are:

transaction_type'stripe_card_payment' | 'manual_payment' | 'credit_grant' | 'refund' | 'buy_order' | 'sell_order'

Filter transactions by type (e.g. buy_order)

Response

Successfully retrieved transactions

object'list' required
has_moreboolean required

Example response

{
  "object": "list",
  "data": [
    {
      "object": "transaction",
      "transaction_time": 1640995200,
      "amount_cents": 50000,
      "details": {
        "object": "transaction_details"
      }
    }
  ]
}

Changes

Changed in 8 of the 44 revisions of this API.1510

  • b819ba3108b393See the full diff
    • removed the required property from the response with the status

      response-required-property-removed

    • removed the required property from the response with the status

      response-required-property-removed

    • removed the required property from the response with the status

      response-required-property-removed

    • removed the required property from the response with the status

      response-required-property-removed

    • removed the required property from the response with the status

      response-required-property-removed

    • removed the required property from the response with the status

      response-required-property-removed

    • removed the required property from the response with the status

      response-required-property-removed

    • removed the required property from the response with the status

      response-required-property-removed

    • removed the required property from the response with the status

      response-required-property-removed

    • added the required property to the response with the status

      response-required-property-added

    • added the required property to the response with the status

      response-required-property-added

    • added the required property to the response with the status

      response-required-property-added

    This revision also has 20 changes that name no endpoint, such as unreferenced schemas being removed. See the revision's changelog

  • ad9dff26659811See the full diff
    • added subschema #5 subschema #6 to the // response property oneOf list for the response status

      response-property-one-of-added

    • removed subschema #5 subschema #6 from the // response property oneOf list for the response status

      response-property-one-of-removed

    This revision also has 54 changes that name no endpoint, such as unreferenced schemas being removed. See the revision's changelog

  • 48ff5f0fb9ee11See the full diff
    • added subschema #5 subschema #6 to the // response property oneOf list for the response status

      response-property-one-of-added

    • removed subschema #5 subschema #6 from the // response property oneOf list for the response status

      response-property-one-of-removed

  • 0222183e15b311See the full diff
    • added subschema #5 subschema #6 to the // response property oneOf list for the response status

      response-property-one-of-added

    • removed subschema #5 subschema #6 from the // response property oneOf list for the response status

      response-property-one-of-removed

    This revision also has 54 changes that name no endpoint, such as unreferenced schemas being removed. See the revision's changelog

  • 73ad90aa5d1911See the full diff
    • added subschema #5 subschema #6 to the // response property oneOf list for the response status

      response-property-one-of-added

    • removed subschema #5 subschema #6 from the // response property oneOf list for the response status

      response-property-one-of-removed

    This revision also has 1 change that name no endpoint, such as unreferenced schemas being removed. See the revision's changelog

    • added subschema #6 to the // response property oneOf list for the response status

      response-property-one-of-added

    • added the new enum value sell_order to the query request parameter transaction_type

      request-parameter-enum-value-added

    This revision also has 1 change that name no endpoint, such as unreferenced schemas being removed. See the revision's changelog

    • added to the ////// response property oneOf list for the response status

      response-property-one-of-added

    • removed from the ////// response property oneOf list for the response status

      response-property-one-of-removed

    This revision also has 1 change that name no endpoint, such as unreferenced schemas being removed. See the revision's changelog

    • added the new optional query request parameter sort

      new-optional-request-parameter