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

# Count Solicitations

> Total matching the same filters as the list endpoint, minus cursor and limit.



## OpenAPI

````yaml GET /v1/solicitations/count
openapi: 3.1.0
info:
  title: CivicMarketplace Partner API
  version: 1.0.0
  description: |
    Read-only partner API for accessing contracts, solicitations, suppliers,
    and reference taxonomy. Authenticate with a partner-scoped API key.
  contact:
    name: CivicMarketplace Engineering
    email: engineering@civicmarketplace.com
servers:
  - url: https://prod-api.civicmarketplace.com
    description: Production
  - url: https://uat-api.civicmarketplace.com
    description: UAT
  - url: https://dev-api.civicmarketplace.com
    description: Dev
security:
  - apiKey: []
tags:
  - name: Contracts
  - name: Solicitations
  - name: Suppliers
  - name: Taxonomy
paths:
  /v1/solicitations/count:
    get:
      tags:
        - Solicitations
      summary: Count solicitations
      description: >-
        Total matching the same filters as the list endpoint, minus cursor and
        limit.
      parameters:
        - in: query
          name: lead_entity
          schema:
            type: string
        - in: query
          name: status
          description: Stored lifecycle status. See the note on the list endpoint.
          schema:
            type: string
            enum:
              - open
              - closed
              - awarded
              - cancelled
        - in: query
          name: q
          schema:
            type: string
            maxLength: 200
        - in: query
          name: closing_after
          schema:
            type: string
            format: date-time
        - in: query
          name: closing_before
          schema:
            type: string
            format: date-time
        - in: query
          name: updated_since
          schema:
            type: string
            format: date-time
      responses:
        '200':
          description: Total
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/CountResponse'
        '401':
          $ref: '#/components/responses/Unauthorized'
components:
  schemas:
    CountResponse:
      type: object
      required:
        - total
      properties:
        total:
          type: integer
    Error:
      type: object
      required:
        - error
      properties:
        error:
          type: object
          required:
            - code
            - message
            - request_id
          properties:
            code:
              type: string
              enum:
                - unauthorized
                - forbidden
                - not_found
                - rate_limited
                - validation_failed
                - internal_error
            message:
              type: string
            request_id:
              type: string
  responses:
    Unauthorized:
      description: Missing or invalid API key
      content:
        application/json:
          schema:
            $ref: '#/components/schemas/Error'
  securitySchemes:
    apiKey:
      type: http
      scheme: bearer
      bearerFormat: cmp_(live|test)_*

````