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

# Balance Sheet

> Retrieve a structured balance sheet for an Indian company as of a specific period end date. Returns detailed line items with bank/non-bank profile support. Balance sheets are point-in-time snapshots and do not require a `reporting_type`.



## OpenAPI

````yaml openapi-india get /api/in/v0/financial-statements/balance-sheet
openapi: 3.0.0
info:
  title: stockinsights.ai APIs
  description: All the APIs of stockinsights.ai
  version: 1.0.0
servers:
  - url: https://stockinsights-ai-main-95a26a0.zuplo.app
security:
  - bearerAuth: []
paths:
  /api/in/v0/financial-statements/balance-sheet:
    get:
      tags:
        - Financial Statements
      summary: Balance Sheet
      description: >-
        Retrieve a structured balance sheet for an Indian company as of a
        specific period end date. Returns detailed line items with bank/non-bank
        profile support. Balance sheets are point-in-time snapshots and do not
        require a `reporting_type`.
      operationId: getBalanceSheet
      parameters:
        - $ref: '#/components/parameters/StatementTicker'
        - $ref: '#/components/parameters/PeriodEndDate'
        - $ref: '#/components/parameters/StatementScope'
      responses:
        '200':
          description: >-
            Successful response with balance sheet data. Returns null data if no
            statement is available for the given parameters.
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/XbrlStatementResponse'
              example:
                status: success
                data:
                  company_id: x9t057a0io1tdakqk19y
                  profile: nonbank
                  statement_type: balance_sheet
                  statement_scope: consolidated
                  reporting_type: as_of
                  fiscal_year: 2025
                  fiscal_quarter: Q4
                  period_end_date: '2025-03-31'
                  audit_status: Audited
                  currency: INR
                  scale: crores
                  financials:
                    non_current_assets:
                      property_plant_equipment: 350000
                      capital_work_in_progress: 120000
                      intangible_assets: 45000
                    current_assets:
                      inventories: 85000
                      financial_assets_current:
                        trade_receivables: 42000
                        cash_equivalents: 18000
                    equity:
                      equity_share_capital: 6766
                      reserves_surplus: 520000
                      non_controlling_interest: 15000
                    non_current_liabilities:
                      financial_liabilities_non_current:
                        borrowings: 180000
                    current_liabilities:
                      financial_liabilities_current:
                        trade_payables: 95000
        '400':
          $ref: '#/components/responses/BadRequest'
        '401':
          $ref: '#/components/responses/Unauthorized'
        '404':
          $ref: '#/components/responses/NotFound'
        '500':
          $ref: '#/components/responses/InternalServerError'
components:
  parameters:
    StatementTicker:
      name: ticker
      in: query
      required: true
      description: >-
        Company ticker symbol. Supports formats: plain ticker (`RELIANCE`),
        exchange-prefixed with dot (`NSE.RELIANCE`, `BSE.RELIANCE`), or colon
        (`NSE:RELIANCE`, `BSE:RELIANCE`), and BSE numeric IDs (`BSE.500325`).
        When no exchange is specified, matches against the generic stock ticker.
      schema:
        type: string
        example: RELIANCE
    PeriodEndDate:
      name: period_end_date
      in: query
      required: true
      description: End date of the reporting period in `YYYY-MM-DD` format.
      schema:
        type: string
        format: date
        example: '2025-03-31'
    StatementScope:
      name: statement_scope
      in: query
      required: true
      description: Whether to retrieve consolidated or standalone financial statements.
      schema:
        type: string
        enum:
          - consolidated
          - standalone
        example: consolidated
  schemas:
    XbrlStatementResponse:
      type: object
      properties:
        status:
          type: string
          enum:
            - success
          description: Response status
        data:
          $ref: '#/components/schemas/XbrlStatementData'
          nullable: true
          description: >-
            Financial statement data. Null if no data is available for the given
            parameters.
    XbrlStatementData:
      type: object
      properties:
        company_id:
          type: string
          description: Internal company identifier
        profile:
          type: string
          enum:
            - bank
            - nonbank
          description: >-
            Company profile type. Banks have a different statement structure
            than non-bank companies.
        statement_type:
          type: string
          enum:
            - income_statement
            - balance_sheet
            - cash_flow
          description: Type of financial statement
        statement_scope:
          type: string
          enum:
            - consolidated
            - standalone
          description: Whether the statement is consolidated or standalone
        reporting_type:
          type: string
          enum:
            - quarterly
            - half_yearly
            - nine_months
            - annual
            - as_of
          description: >-
            Reporting period type. `as_of` is only applicable for balance
            sheets.
        fiscal_year:
          type: integer
          description: Fiscal year
        fiscal_quarter:
          type: string
          enum:
            - Q1
            - Q2
            - Q3
            - Q4
          description: Fiscal quarter
        period_end_date:
          type: string
          format: date
          description: End date of the reporting period
        audit_status:
          type: string
          nullable: true
          description: Audit status of the filing (e.g., Audited, UnAudited)
        currency:
          type: string
          description: Currency of the reported values (e.g., INR)
        scale:
          type: string
          description: Scale of the reported values (e.g., crores)
        financials:
          type: object
          description: >-
            Structured financial statement data. Structure varies by statement
            type (income_statement, balance_sheet, cash_flow) and profile (bank,
            nonbank). All numeric values are in the specified currency and
            scale, rounded to 2 decimal places. Null values indicate the line
            item is not applicable or not reported.
          additionalProperties: true
    Error:
      type: object
      properties:
        errors:
          type: array
          items:
            type: object
            properties:
              status:
                type: string
                description: Error status
              title:
                type: string
                description: Error description
              message:
                type: string
                description: Detailed error message (optional)
  responses:
    BadRequest:
      description: Bad request - Invalid query parameters
      content:
        application/json:
          schema:
            $ref: '#/components/schemas/Error'
          example:
            errors:
              - status: '400'
                title: Invalid field - reporting_type
                message: >-
                  reporting_type must be one of: quarterly, half_yearly,
                  nine_months, annual
    Unauthorized:
      description: Unauthorized - Invalid or missing API key
      content:
        application/json:
          schema:
            $ref: '#/components/schemas/Error'
          example:
            errors:
              - status: '401'
                title: Unauthorized
                message: Invalid or missing API key
    NotFound:
      description: Company not found for the given ticker
      content:
        application/json:
          schema:
            $ref: '#/components/schemas/Error'
          example:
            errors:
              - status: '404'
                title: Company not found
                message: 'No company found for ticker: INVALID'
    InternalServerError:
      description: Internal server error
      content:
        application/json:
          schema:
            $ref: '#/components/schemas/Error'
          example:
            errors:
              - status: '500'
                title: Internal Server Error
  securitySchemes:
    bearerAuth:
      type: http
      scheme: bearer

````