## Retrieve a Source

`stripe.retrieveSource(source: object)`

Retrieve a [Source](https://docs.stripe.com/api.md#sources) using its unique ID and client secret.

- `source`
  An object containing the unique ID and client secret for a `Source`.

You can use a `Source` object created with `stripe.createSource` as the argument to `stripe.retrieveSource`, as every `Source` object has both `id` and `client_secret` keys.
    - `id`
      Unique identifier of the `Source`.
    - `client_secret`
      A secret available to the web client that created the `Source`, for purposes of retrieving the `Source` later from that same client.

### Example

```title
Retrieve a Source
```
