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

# Count companies

> Number of companies matching the same `search` and `conditions` the list route accepts.
Drives the live match count in the pipeline bulk-add filter.



## OpenAPI

````yaml https://api.gleap.io/api-docs.json get /companies/count
openapi: 3.0.0
info:
  title: gleap-server
  version: 14.0.0
  contact: {}
servers:
  - url: https://api.gleap.io/v3
security: []
paths:
  /companies/count:
    get:
      tags:
        - Company
      summary: Count companies
      description: >-
        Number of companies matching the same `search` and `conditions` the list
        route accepts.

        Drives the live match count in the pipeline bulk-add filter.
      operationId: Count
      parameters:
        - in: header
          name: project
          required: true
          schema:
            type: string
      responses:
        '200':
          description: Ok
          content:
            application/json:
              schema:
                properties:
                  count:
                    type: number
                    format: double
                required:
                  - count
                type: object
      security:
        - jwt: []
components:
  securitySchemes:
    jwt:
      type: http
      scheme: bearer
      bearerFormat: JWT

````