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

> View your organization's current credit and incentive balance. Use this to check available funds before creating or publishing projects.

# View credit and incentive balance



## OpenAPI

````yaml get /v1/pricing/balances/summary
openapi: 3.0.0
info:
  title: Partner API
  description: Public API for partner integrations
  version: '1.0'
  contact: {}
servers:
  - url: https://api-staging.respondent.io
security: []
tags: []
paths:
  /v1/pricing/balances/summary:
    get:
      tags:
        - pricing
      summary: View credit and incentive balance
      description: |-
        Returns the credit and incentive balances for the team.
        Incentives are represented in cents in US dollars.
        Credits are represented in a total count of credits.
        To get # of B2C credits divide by 30.
        To get # of B2B credits divide by 50.
      operationId: PricingController_getBalanceSummary
      parameters:
        - name: x-api-key
          in: header
          required: true
          schema:
            type: string
        - name: x-api-secret
          in: header
          required: true
          schema:
            type: string
      responses:
        '200':
          description: ''
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/PricingBalanceSummary'
components:
  schemas:
    PricingBalanceSummary:
      type: object
      properties:
        creditBalance:
          type: number
        incentiveBalance:
          type: number
      required:
        - creditBalance
        - incentiveBalance

````