# GetIssuingCardsCard

From **Stripe API**.

`GET /v1/issuing/cards/{card}`

<p>Retrieves an Issuing <code>Card</code> object.</p>

## Parameters

### `card`

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

### `expand`

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

Specifies which fields in the response should be expanded.

## 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`

You can [create physical or virtual cards](https://stripe.com/docs/issuing/cards) that are issued to cardholders.

```json
{"description":"You can [create physical or virtual cards](https://stripe.com/docs/issuing/cards) that are issued to cardholders.","properties":{"brand":{"description":"The brand of the card.","maxLength":5000,"type":"string"},"cancellation_reason":{"description":"The reason why the card was canceled.","enum":["lost","stolen"],"nullable":true,"type":"string"},"cardholder":{"$ref":"#/components/schemas/issuing.cardholder"},"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"},"cvc":{"description":"The card's CVC. For security reasons, this is only available for virtual cards, and will be omitted unless you explicitly request it with [the `expand` parameter](https://stripe.com/docs/api/expanding_objects). Additionally, it's only available via the [\"Retrieve a card\" endpoint](https://stripe.com/docs/api/issuing/cards/retrieve), not via \"List all cards\" or any other endpoint.","maxLength":5000,"type":"string"},"exp_month":{"description":"The expiration month of the card.","type":"integer"},"exp_year":{"description":"The expiration year of the card.","type":"integer"},"id":{"description":"Unique identifier for the object.","maxLength":5000,"type":"string"},"last4":{"description":"The last 4 digits of the card number.","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"},"metadata":{"additionalProperties":{"maxLength":500,"type":"string"},"description":"Set of [key-value pairs](https://stripe.com/docs/api/metadata) that you can attach to an object. This can be useful for storing additional information about the object in a structured format.","type":"object"},"number":{"description":"The full unredacted card number. For security reasons, this is only available for virtual cards, and will be omitted unless you explicitly request it with [the `expand` parameter](https://stripe.com/docs/api/expanding_objects). Additionally, it's only available via the [\"Retrieve a card\" endpoint](https://stripe.com/docs/api/issuing/cards/retrieve), not via \"List all cards\" or any other endpoint.","maxLength":5000,"type":"string"},"object":{"description":"String representing the object's type. Objects of the same type share the same value.","enum":["issuing.card"],"type":"string"},"replaced_by":{"anyOf":[{"maxLength":5000,"type":"string"},{"$ref":"#/components/schemas/issuing.card"}],"description":"The latest card that replaces this card, if any.","nullable":true,"x-expansionResources":{"oneOf":[{"$ref":"#/components/schemas/issuing.card"}]}},"replacement_for":{"anyOf":[{"maxLength":5000,"type":"string"},{"$ref":"#/components/schemas/issuing.card"}],"description":"The card this card replaces, if any.","nullable":true,"x-expansionResources":{"oneOf":[{"$ref":"#/components/schemas/issuing.card"}]}},"replacement_reason":{"description":"The reason why the previous card needed to be replaced.","enum":["damaged","expired","lost","stolen"],"nullable":true,"type":"string","x-stripeBypassValidation":true},"shipping":{"anyOf":[{"$ref":"#/components/schemas/issuing_card_shipping"}],"description":"Where and how the card will be shipped.","nullable":true},"spending_controls":{"$ref":"#/components/schemas/issuing_card_authorization_controls"},"status":{"description":"Whether authorizations can be approved on this card.","enum":["active","canceled","inactive"],"type":"string","x-stripeBypassValidation":true},"type":{"description":"The type of the card.","enum":["physical","virtual"],"type":"string"},"wallets":{"anyOf":[{"$ref":"#/components/schemas/issuing_card_wallets"}],"description":"Information relating to digital wallets (like Apple Pay and Google Pay).","nullable":true}},"required":["brand","cardholder","created","currency","exp_month","exp_year","id","last4","livemode","metadata","object","spending_controls","status","type"],"title":"IssuingCard","type":"object","x-expandableFields":["cardholder","replaced_by","replacement_for","shipping","spending_controls","wallets"],"x-resourceId":"issuing.card"}
```

### `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/issuing/cards/{card} \
  --header 'content-type: application/x-www-form-urlencoded' \
  --data '{}'
```
