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

# Show progress

> Show progress of batch process. 
 <Tip>**HTTP Request** <br/>`GET https://api.firstpromoter.com/api/v2/company/batch_processes/progress`</Tip>



## OpenAPI

````yaml openapi-v2-batches get /batch_processes/progress
openapi: 3.0.0
info:
  title: FirstPromoter Batch Processes API
  version: 1.0.0
  description: API for managing batch processes
servers:
  - url: https://api.firstpromoter.com/api/v2/company
    description: Production server
security:
  - BearerAuth: []
paths:
  /batch_processes/progress:
    get:
      summary: Show progress
      description: |-
        Show progress of batch process. 
         <Tip>**HTTP Request** <br/>`GET https://api.firstpromoter.com/api/v2/company/batch_processes/progress`</Tip>
      operationId: getBatchProcessProgress
      parameters:
        - $ref: '#/components/parameters/AccountId'
        - in: query
          name: filters[status]
          schema:
            oneOf:
              - type: string
                enum:
                  - pending
                  - in_progress
                  - completed
                  - failed
                  - stopped
              - type: array
                items:
                  type: string
                  enum:
                    - pending
                    - in_progress
                    - completed
                    - failed
                    - stopped
          description: Filter by status (array or string)
          required: false
      responses:
        '200':
          description: Successfully retrieved batch process progress
          content:
            application/json:
              schema:
                type: object
                additionalProperties:
                  type: integer
                example:
                  '30': 0
                  '31': 0
                  '32': 0
        '401':
          description: Unauthenticated or missing bearer token
        '403':
          description: Forbidden - invalid user type or insufficient permissions
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/Error'
components:
  parameters:
    AccountId:
      name: Account-ID
      in: header
      required: true
      description: >-
        Account ID. You can find your Account ID on Your FirstPromoter
        Dashboard. Navigate to Settings → Integrations
      schema:
        type: string
  schemas:
    Error:
      type: object
      properties:
        message:
          type: string
          example: Invalid user type
        code:
          type: string
          example: forbidden
  securitySchemes:
    BearerAuth:
      type: http
      scheme: bearer
      description: >-
        API key passed as a Bearer token in the Authorization header. You can
        find your API Key on Your FirstPromoter Dashboard. Navigate to Settings
        → Integrations section → Manage API Keys

````