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

# Get Remaining Credits

> 

Retrieve the remaining credit balance for the authenticated user/organization.

Use this endpoint to monitor your usage and programmatically check how many credits are available for search and enrichment requests.



## OpenAPI

````yaml /api-reference/combined.json get /v1/credits
openapi: 3.1.0
info:
  title: Precept API
  description: >-
    Precept API provides powerful, programmatic access to our AI-driven B2B
    account research, company enrichment, and verified contact data
    capabilities. Use these endpoints to discover high-intent companies, map
    decision-makers, and run personalized enrichment pipelines directly
    integrating with your CRM, spreadsheets, or automated workflows like Make
    and n8n.
  version: 1.0.0
servers:
  - url: https://api.preceptai.co.uk
security:
  - bearerAuth: []
paths:
  /v1/credits:
    get:
      tags:
        - Billing
      summary: Get Remaining Credits
      description: >-


        Retrieve the remaining credit balance for the authenticated
        user/organization.


        Use this endpoint to monitor your usage and programmatically check how
        many credits are available for search and enrichment requests.
      responses:
        '200':
          description: The remaining credit balance.
          content:
            application/json:
              schema:
                type: object
                properties:
                  credits:
                    type: number
                    description: The remaining credit balance.
              examples:
                default:
                  summary: Successful response
                  value:
                    credits: 2450.5
        '401':
          description: 'Unauthorized: Missing or invalid API key.'
          content:
            application/json:
              schema:
                type: object
                properties:
                  error:
                    type: string
        '500':
          description: Internal server error.
          content:
            application/json:
              schema:
                type: object
                properties:
                  error:
                    type: string
components:
  securitySchemes:
    bearerAuth:
      type: http
      scheme: bearer

````