# GetSubscriptionItemsItem

From **Stripe API**.

`GET /v1/subscription_items/{item}`

<p>Retrieves the subscription item with the given ID.</p>

## Parameters

### `expand`

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

Specifies which fields in the response should be expanded.

### `item`

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

Subscription items allow you to create customer subscriptions with more than
one plan, making it easy to represent complex billing relationships.

```json
{"description":"Subscription items allow you to create customer subscriptions with more than\none plan, making it easy to represent complex billing relationships.","properties":{"billing_thresholds":{"anyOf":[{"$ref":"#/components/schemas/subscription_item_billing_thresholds"}],"description":"Define thresholds at which an invoice will be sent, and the related subscription advanced to a new billing period","nullable":true},"created":{"description":"Time at which the object was created. Measured in seconds since the Unix epoch.","type":"integer"},"id":{"description":"Unique identifier for the object.","maxLength":5000,"type":"string"},"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"},"object":{"description":"String representing the object's type. Objects of the same type share the same value.","enum":["subscription_item"],"type":"string"},"price":{"$ref":"#/components/schemas/price"},"quantity":{"description":"The [quantity](https://stripe.com/docs/subscriptions/quantities) of the plan to which the customer should be subscribed.","type":"integer"},"subscription":{"description":"The `subscription` this `subscription_item` belongs to.","maxLength":5000,"type":"string"},"tax_rates":{"description":"The tax rates which apply to this `subscription_item`. When set, the `default_tax_rates` on the subscription do not apply to this `subscription_item`.","items":{"$ref":"#/components/schemas/tax_rate"},"nullable":true,"type":"array"}},"required":["created","id","metadata","object","price","subscription"],"title":"SubscriptionItem","type":"object","x-expandableFields":["billing_thresholds","price","tax_rates"],"x-resourceId":"subscription_item"}
```

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