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

# Current credit balance

> Get your current credit balance and usage information



## OpenAPI

````yaml GET /credits
openapi: 3.0.1
info:
  title: Pipecorn Miscellaneous API
  description: Pipecorn Miscellaneous API
  license:
    name: MIT
  version: 1.0.0
servers:
  - url: https://app.pipecorn.com/api/v2/
security:
  - defaultApiKey: []
paths:
  /credits:
    get:
      summary: Retrieve credit balances
      description: Returns the current credit balances and limits for various services
      responses:
        '200':
          description: A JSON array of list objects
          content:
            application/json:
              schema:
                type: array
                items:
                  $ref: '#/components/schemas/Credit'
components:
  schemas:
    Credit:
      type: object
      properties:
        credits:
          type: object
          properties:
            enrichment:
              type: integer
              description: Number of enrichment credits remaining
              example: 3000
            daily_profile_scraping:
              type: integer
              description: Number of daily profile scraping credits remaining
              example: 1500
            daily_company_import:
              type: integer
              description: Number of daily company import credits remaining
              example: 1000
            monthly_company_import:
              type: integer
              description: Number of monthly company import credits remaining
              example: 10000
        limits:
          type: object
          properties:
            daily_profile_scraping:
              type: integer
              example: 2500
              description: Maximum daily profile scraping credits
            daily_company_import:
              type: integer
              example: 1000
              description: Maximum daily company import credits
            monthly_company_import:
              type: integer
              example: 10000
              description: Maximum monthly company import credits
  securitySchemes:
    defaultApiKey:
      type: apiKey
      in: header
      description: Your API key
      name: X-API-KEY

````