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

# Check Quota



## OpenAPI

````yaml /partner-api/openapi.json get /api/Contacts/CheckQuota
openapi: 3.0.1
info:
  title: SeekOut Partner API
  version: '1.0'
  description: >-
    The SeekOut Partner API provides direct, programmatic REST access to
    SeekOut's talent search engine. Use it to build custom integrations,
    dashboards, scheduled jobs, and backend workflows for candidate search,
    profile matching, contact retrieval, and analytics. Authenticate every
    request with your `Api-Key` header, provisioned by your SeekOut
    representative.
servers:
  - url: https://partnerapi.seekout.io
    description: SeekOut Partner API
security:
  - ApiKey: []
paths:
  /api/Contacts/CheckQuota:
    get:
      tags:
        - Contacts
      summary: Check Quota
      operationId: checkQuota
      responses:
        '200':
          description: Success
          content:
            text/plain:
              schema:
                $ref: '#/components/schemas/PartnerApiWebService.Models.QuotaResults'
            application/json:
              schema:
                $ref: '#/components/schemas/PartnerApiWebService.Models.QuotaResults'
            text/json:
              schema:
                $ref: '#/components/schemas/PartnerApiWebService.Models.QuotaResults'
components:
  schemas:
    PartnerApiWebService.Models.QuotaResults:
      type: object
      properties:
        quotaAvailable:
          type: integer
          format: int32
        hasQuota:
          type: boolean
      additionalProperties: false
  securitySchemes:
    ApiKey:
      type: apiKey
      in: header
      name: Api-Key
      description: >-
        Organization-scoped API key provisioned by SeekOut. Send it in the
        `Api-Key` header on every request.

````