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

# Get All Customers

> Retrieve a list of customers the user has access to.

This endpoint returns all customers visible to the authenticated user. You can apply filters using query parameters like `limit`, `offset`, and any custom filters based on metadata.

The response is paginated and includes customer details like name, email, country, tax IDs, and more.

### Example Use Case

Use this endpoint to populate customer dropdowns, prefill invoices, or retrieve full customer lists for compliance checks.


## OpenAPI

````yaml GET /customers
openapi: 3.0.1
info:
  title: Antei API Reference
  description: >-
    Programmatic access to Antei’s platform. Use this API to manage core objects
    and retrieve taxation insights.
  version: 1.0.0
  license:
    name: MIT
  contact:
    name: Antei Developer Support
    email: support@antei.com
    url: https://antei.com
servers:
  - url: https://api.antei.com
security:
  - bearerAuth: []
paths:
  /customers:
    get:
      summary: Get All Customers
      description: Returns all customers that the authenticated user has access to.
      parameters:
        - name: limit
          in: query
          description: Maximum number of customers to return
          schema:
            type: integer
            format: int32
        - name: offset
          in: query
          description: Number of records to skip
          schema:
            type: integer
            format: int32
      responses:
        '200':
          description: List of customers
          content:
            application/json:
              schema:
                type: array
                items:
                  $ref: '#/components/schemas/Customer'
        '401':
          description: Unauthorized
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/Error'
components:
  schemas:
    Customer:
      type: object
      required:
        - id
        - name
        - email
      properties:
        id:
          type: string
          description: Unique identifier for the customer
        name:
          type: string
          description: Name of the customer
        email:
          type: string
          description: Email address of the customer
        tax_id:
          type: string
          description: Tax ID associated with the customer
    Error:
      type: object
      properties:
        error:
          type: string
        message:
          type: string
        status:
          type: integer
  securitySchemes:
    bearerAuth:
      type: http
      scheme: bearer

````