> ## Documentation Index
> Fetch the complete documentation index at: https://docs.helicone.ai/llms.txt
> Use this file to discover all available pages before exploring further.

# Get v1stripesubscription



## OpenAPI

````yaml get /v1/stripe/subscription
openapi: 3.0.0
info:
  title: helicone-api
  version: 1.0.0
  license:
    name: MIT
  contact: {}
servers:
  - url: https://api.helicone.ai/
  - url: http://localhost:8585/
security: []
paths:
  /v1/stripe/subscription:
    get:
      tags:
        - Stripe
      operationId: GetSubscription
      parameters: []
      responses:
        '200':
          description: Ok
          content:
            application/json:
              schema:
                properties:
                  items:
                    items:
                      properties:
                        price:
                          properties:
                            product:
                              properties:
                                name:
                                  type: string
                                  nullable: true
                              required:
                                - name
                              type: object
                              nullable: true
                          required:
                            - product
                          type: object
                        quantity:
                          type: number
                          format: double
                      required:
                        - price
                      type: object
                    type: array
                  trial_end:
                    type: number
                    format: double
                    nullable: true
                  id:
                    type: string
                  current_period_start:
                    type: number
                    format: double
                  current_period_end:
                    type: number
                    format: double
                  cancel_at_period_end:
                    type: boolean
                  status:
                    type: string
                required:
                  - items
                  - trial_end
                  - id
                  - current_period_start
                  - current_period_end
                  - cancel_at_period_end
                  - status
                type: object
                nullable: true
      security:
        - api_key: []
components:
  securitySchemes:
    api_key:
      type: apiKey
      name: Authorization
      in: header
      description: 'Bearer token authentication. Format: ''Bearer YOUR_API_KEY'''

````