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

# Get current organization



## OpenAPI

````yaml api-reference/openapi.json get /api/organization/current
openapi: 3.0.0
info:
  title: Bigcapital
  description: Financial accounting software
  version: '1.0'
  contact: {}
servers: []
security: []
tags: []
paths:
  /api/organization/current:
    get:
      tags:
        - Organization
      summary: Get current organization
      operationId: OrganizationController_currentOrganization
      parameters:
        - name: Authorization
          in: header
          description: >-
            Value must be 'Bearer <token>' where <token> is an API key prefixed
            with 'bc_' or a JWT token.
          required: true
          schema:
            type: string
            example: Bearer bc_1234567890abcdef
        - name: organization-id
          in: header
          description: >-
            Required if Authorization is a JWT token. The organization ID to
            operate within.
          required: true
          schema:
            type: string
      responses:
        '200':
          description: Returns the current organization
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/GetCurrentOrganizationResponseDto'
components:
  schemas:
    GetCurrentOrganizationResponseDto:
      type: object
      properties:
        id:
          type: number
          description: Internal numeric ID of the organization
          example: 1
        organizationId:
          type: string
          description: Unique string identifier for the organization
          example: org_123456
        initializedAt:
          format: date-time
          type: string
          description: Date when the organization was initialized
          example: '2024-01-01T00:00:00.000Z'
        seededAt:
          format: date-time
          type: string
          description: Date when the organization was seeded
          example: '2024-01-01T01:00:00.000Z'
        builtAt:
          format: date-time
          type: string
          description: Date when the organization was built
          example: '2024-01-01T02:00:00.000Z'
        databaseBatch:
          type: string
          description: Database batch identifier, if any
          example: batch_001
          nullable: true
        metadata:
          description: Organization metadata
          type: array
          items:
            $ref: '#/components/schemas/OrganizationMetadataResponseDto'
        isReady:
          type: boolean
          description: Whether the organization is ready
          example: true
        isBuildRunning:
          type: boolean
          description: Whether a build process is currently running
          example: false
        isUpgradeRunning:
          type: boolean
          description: Whether an upgrade process is currently running
          example: false
      required:
        - id
        - organizationId
        - initializedAt
        - seededAt
        - builtAt
        - metadata
        - isReady
        - isBuildRunning
        - isUpgradeRunning
    OrganizationMetadataResponseDto:
      type: object
      properties:
        id:
          type: number
          description: Internal numeric ID of the metadata
          example: 1
        tenantId:
          type: number
          description: Tenant ID associated with the organization
          example: 101
        name:
          type: string
          description: Name of the organization
          example: Acme Inc.
        industry:
          type: string
          description: Industry of the organization
          example: Technology
        location:
          type: string
          description: Location of the organization
          example: US
        baseCurrency:
          type: string
          description: Base currency in ISO 4217 format
          example: USD
        language:
          type: string
          description: Language/locale of the organization
          example: en-US
        timezone:
          type: string
          description: Timezone of the organization
          example: America/New_York
        dateFormat:
          type: string
          description: Date format used by the organization
          example: MM/DD/YYYY
        fiscalYear:
          type: string
          description: Fiscal year of the organization
          example: January
        taxNumber:
          type: string
          description: Tax identification number
          example: 12-3456789
          nullable: true
        primaryColor:
          type: string
          description: Primary brand color in hex format
          example: '#4285F4'
          nullable: true
        logoKey:
          type: string
          description: Logo file key reference
          example: organizations/acme-logo-123456.png
          nullable: true
        logoUri:
          type: string
          description: Logo URL (presigned or public) for display
          example: https://...
          nullable: true
        address:
          type: string
          description: Organization address details
          example: 123 Main St, New York, NY
          nullable: true
      required:
        - id
        - tenantId
        - name
        - location
        - baseCurrency
        - language
        - timezone
        - dateFormat
        - fiscalYear

````