# GetSourcesSourceSourceTransactionsSourceTransaction

From **Stripe API**.

`GET /v1/sources/{source}/source_transactions/{source_transaction}`

<p>Retrieve an existing source transaction object. Supply the unique source ID from a source creation request and the source transaction ID and Stripe will return the corresponding up-to-date source object information.</p>

## Parameters

### `expand`

- Location: query
- Required: false
- Type: `array`

Specifies which fields in the response should be expanded.

### `source`

- Location: path
- Required: true
- Type: `string`
- maxLength: `5000`

### `source_transaction`

- Location: path
- Required: true
- Type: `string`
- maxLength: `5000`

## Request body

- Required: false
### `application/x-www-form-urlencoded`

- Type: `object`

```json
{"additionalProperties":false,"type":"object"}
```

## Security

### `basicAuth`

- Type: `http`
- Request header: `Authorization`
- Scheme: `basic`
Send credentials in the `Authorization` request header using the `Basic` scheme.

Basic HTTP authentication. Allowed headers-- Authorization: Basic <api_key> | Authorization: Basic <base64 hash of `api_key:`>

### `bearerAuth`

- Type: `http`
- Request header: `Authorization`
- Scheme: `bearer`
- Bearer format: `auth-scheme`
Send the token in the `Authorization` request header using the `Bearer` scheme.

Bearer HTTP authentication. Allowed headers-- Authorization: Bearer <api_key>

## Responses

### `200`

Successful response.

### `application/json`

- Type: `object`

Some payment methods have no required amount that a customer must send.
Customers can be instructed to send any amount, and it can be made up of
multiple transactions. As such, sources can have multiple associated
transactions.

```json
{"description":"Some payment methods have no required amount that a customer must send.\nCustomers can be instructed to send any amount, and it can be made up of\nmultiple transactions. As such, sources can have multiple associated\ntransactions.","properties":{"ach_credit_transfer":{"$ref":"#/components/schemas/source_transaction_ach_credit_transfer_data"},"amount":{"description":"A positive integer in the smallest currency unit (that is, 100 cents for $1.00, or 1 for ¥1, Japanese Yen being a zero-decimal currency) representing the amount your customer has pushed to the receiver.","type":"integer"},"chf_credit_transfer":{"$ref":"#/components/schemas/source_transaction_chf_credit_transfer_data"},"created":{"description":"Time at which the object was created. Measured in seconds since the Unix epoch.","format":"unix-time","type":"integer"},"currency":{"description":"Three-letter [ISO currency code](https://www.iso.org/iso-4217-currency-codes.html), in lowercase. Must be a [supported currency](https://stripe.com/docs/currencies).","type":"string"},"gbp_credit_transfer":{"$ref":"#/components/schemas/source_transaction_gbp_credit_transfer_data"},"id":{"description":"Unique identifier for the object.","maxLength":5000,"type":"string"},"livemode":{"description":"Has the value `true` if the object exists in live mode or the value `false` if the object exists in test mode.","type":"boolean"},"object":{"description":"String representing the object's type. Objects of the same type share the same value.","enum":["source_transaction"],"type":"string"},"paper_check":{"$ref":"#/components/schemas/source_transaction_paper_check_data"},"sepa_credit_transfer":{"$ref":"#/components/schemas/source_transaction_sepa_credit_transfer_data"},"source":{"description":"The ID of the source this transaction is attached to.","maxLength":5000,"type":"string"},"status":{"description":"The status of the transaction, one of `succeeded`, `pending`, or `failed`.","maxLength":5000,"type":"string"},"type":{"description":"The type of source this transaction is attached to.","enum":["ach_credit_transfer","ach_debit","alipay","bancontact","card","card_present","eps","giropay","ideal","klarna","multibanco","p24","sepa_debit","sofort","three_d_secure","wechat"],"type":"string"}},"required":["amount","created","currency","id","livemode","object","source","status","type"],"title":"SourceTransaction","type":"object","x-expandableFields":["ach_credit_transfer","chf_credit_transfer","gbp_credit_transfer","paper_check","sepa_credit_transfer"],"x-resourceId":"source_transaction"}
```

### `default`

Error response.

### `application/json`

- Type: `object`

An error response from the Stripe API

```json
{"description":"An error response from the Stripe API","properties":{"error":{"$ref":"#/components/schemas/api_errors"}},"required":["error"],"type":"object"}
```

## Request examples

### cURL

```shell
curl --request GET \
  --url https://api.stripe.com/v1/sources/{source}/source_transactions/{source_transaction} \
  --header 'content-type: application/x-www-form-urlencoded' \
  --data '{}'
```
