> ## 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 Products

> Retrieve all products available in the system.

Returns a list of all products that belong to your organization.

**Authorization**: Requires Bearer token\
**Base URL**: `https://api.antei.com`

### Query Parameters

* `limit` *(optional)* – Limit the number of results

### Response

A list of product objects, including ID, name, category, and pricing details.


## OpenAPI

````yaml GET /products
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:
  /products:
    get:
      tags:
        - Products
      summary: Get all products
      description: Retrieve all products available in the system.
      responses:
        '200':
          description: List of products
          content:
            application/json:
              schema:
                type: array
                items:
                  $ref: '#/components/schemas/Product'
components:
  schemas:
    Product:
      type: object
      properties:
        id:
          type: string
          description: Unique product identifier
        name:
          type: string
          description: Product name
        category:
          type: string
          description: Product category
        pricing_amount:
          type: number
          description: Base price of the product
        currency:
          type: string
          description: Currency code (e.g., USD, EUR, INR)
      required:
        - id
        - name
        - pricing_amount
        - currency
  securitySchemes:
    bearerAuth:
      type: http
      scheme: bearer

````