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

# Get settings

> Users should be able to get their organization settings



## OpenAPI

````yaml get /organization/settings
openapi: 3.0.1
info:
  title: BeyondWords REST API
  description: |-
    This is the documentation for the BeyondWords REST API.
              You can use this API to use BeyondWords programmatically.
              You can get your API Key and Project ID for each project in the Project settings tab in the BeyondWords
              <a href="https://dash.beyondwords.io/dashboard">dashboard</a>.
  version: 1.0.0
servers:
  - url: https://api.beyondwords.io/v1
security: []
paths:
  /organization/settings:
    get:
      tags:
        - Organization
      summary: Organization settings
      description: Users should be able to get their organization settings
      operationId: organization#settings
      responses:
        '200':
          description: OK
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/organizationSettingsModel'
      security:
        - apiKey: []
components:
  schemas:
    organizationSettingsModel:
      type: object
      properties:
        stripe:
          type: object
          properties:
            customer_id:
              type: string
              description: stripe id of the customer
            plan_id:
              type: string
              description: stripe id of the plan
              nullable: true
            pending_plan_id:
              type: string
              description: stripe id of the pending plan
              nullable: true
            subscription_id:
              type: string
              description: stripe id of the subscription
              nullable: true
        plan:
          $ref: '#/components/schemas/planModel'
        pending_plan:
          $ref: '#/components/schemas/planModel'
          nullable: true
        subscription:
          type: object
          properties:
            start:
              type: string
              format: date-time
            end:
              type: string
              format: date-time
              nullable: true
        quota:
          type: object
          properties:
            type:
              type: string
            interval:
              type: string
            limit:
              type: integer
            content_overage_enabled:
              type: boolean
            content_overage_limit:
              type: integer
              nullable: true
            remaining:
              type: integer
            used:
              type: integer
            start:
              type: string
              format: date-time
            end:
              type: string
              format: date-time
              nullable: true
        features:
          type: object
    planModel:
      type: object
      properties:
        id:
          type: integer
        name:
          type: string
        interval:
          type: string
        currency:
          type: string
        amount:
          type: integer
        permission:
          type: string
        custom:
          type: boolean
        overage_enabled:
          type: boolean
        overage_billing_threshold:
          type: integer
          nullable: true
        overage_price:
          type: integer
          nullable: true
        promotion_codes:
          type: array
          nullable: true
          items:
            type: object
            properties:
              type:
                type: string
              value:
                type: integer
  securitySchemes:
    apiKey:
      type: apiKey
      name: X-Api-Key
      in: header

````