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

# Get bank accounts (Bankgirot) for a company

> Returns the company's bank-giro numbers registered with Bankgirot.

<Badge color="green" size="sm">Pro+ tier</Badge>


## OpenAPI

````yaml get /companies/{id}/bank-accounts
openapi: 3.1.1
info:
  title: TIC Lens API
  description: "The TIC Lens API provides programmatic access to company, person, property, vehicle, and order data.\r\n\r\n## Authentication\r\n\r\nAll requests require an API key passed via the `x-api-key` header:\r\n\r\n```bash\r\ncurl -H \"x-api-key: YOUR_API_KEY\" https://lens-api.tic.io/companies/123\r\n```\r\n\r\nAPI keys are managed through the TIC Lens web application under **Settings → API Keys**.\r\n\r\n## Base URL\r\n\r\n| Environment | URL |\r\n|-------------|-----|\r\n| Production  | `https://lens-api.tic.io` |\r\n\r\n## Feature Access\r\n\r\nEndpoints are gated by your subscription plan. If your plan does not include a feature, the endpoint will return `403 Forbidden`.\r\n\r\n## Rate Limits\r\n\r\nRate limits are applied per API key. If you exceed the limit, requests will return `429 Too Many Requests`.\r\n\r\n## Response Format\r\n\r\nAll responses are JSON. Null values are omitted from responses.\r\n"
  version: v1
servers:
  - url: https://lens-api.tic.io
security:
  - ApiKey: []
tags:
  - name: Addresses
  - name: Bolagsverket
  - name: Brf
  - name: Companies
  - name: Documents
  - name: FlightImages
  - name: Free
  - name: Orders
  - name: OrdersExports
  - name: PaymentControl
  - name: PaymentControlImport
  - name: Persons
  - name: Properties
  - name: PublicSearch
  - name: SearchAutocomplete
  - name: Sentinel
  - name: ServingPermits
  - name: Team
  - name: Teams
  - name: Transportstyrelsen
  - name: Vehicles
  - name: WatchList
paths:
  /companies/{id}/bank-accounts:
    get:
      tags:
        - Companies
      summary: Get bank accounts (Bankgirot) for a company
      description: Returns the company's bank-giro numbers registered with Bankgirot.
      operationId: GetCompanyBankAccounts
      parameters:
        - name: id
          in: path
          description: Internal company ID
          required: true
          schema:
            type: integer
            format: int32
      responses:
        '200':
          description: List of bank-giro numbers
          content:
            application/json:
              schema:
                type: array
                items:
                  $ref: >-
                    #/components/schemas/Ormeo_Library_Dtos_Bankgirot_Bankgironumber_Dto
        '404':
          description: Company not found or not accessible
components:
  schemas:
    Ormeo_Library_Dtos_Bankgirot_Bankgironumber_Dto:
      type: object
      properties:
        companyId:
          type:
            - 'null'
            - integer
          format: int32
        updatedAt:
          type:
            - 'null'
            - string
          format: date-time
        updateType:
          $ref: '#/components/schemas/Ormeo_Library_Entities_BankgirotUpdateType'
        bankgironumber:
          type:
            - 'null'
            - integer
          format: int32
        terminated:
          type:
            - 'null'
            - boolean
        name:
          type:
            - 'null'
            - string
        isTaxBankgironumber:
          type:
            - 'null'
            - boolean
        ocrType:
          $ref: '#/components/schemas/Ormeo_Library_Entities_BankgirotOCRType'
        ocrReferenceLength1:
          type:
            - 'null'
            - integer
          format: int32
        ocrReferenceLength2:
          type:
            - 'null'
            - integer
          format: int32
        addressLine1:
          type:
            - 'null'
            - string
        addressLine2:
          type:
            - 'null'
            - string
        addressLine3:
          type:
            - 'null'
            - string
        addressLine4:
          type:
            - 'null'
            - string
        addressLine5:
          type:
            - 'null'
            - string
        postalCode:
          type:
            - 'null'
            - string
        city:
          type:
            - 'null'
            - string
      additionalProperties: false
    Ormeo_Library_Entities_BankgirotUpdateType:
      enum:
        - inserted
        - deleted
        - updated
      type: string
    Ormeo_Library_Entities_BankgirotOCRType:
      enum:
        - notConnectedToOCR
        - connectedToOCRSoftCheckLevel
        - connectedToOCRHardCheckLevel
        - connectedToOCRHardCheckLevelVariableLength
        - connectedToOCRHardCheckLevelFixedLength
      type: string
  securitySchemes:
    ApiKey:
      type: apiKey
      name: x-api-key
      in: header

````