> ## 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 Product by ID

> Retrieve a single product using its unique ID.

Returns the full product details for a specific product.

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

### Path Parameters

* `id` *(required)* – ID of the product

### Response

Returns a single product object if found. If the ID is invalid, a 404 error will be returned.


## OpenAPI

````yaml GET /products/{id}
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/{id}:
    get:
      tags:
        - Products
      summary: Get product by ID
      description: Retrieve a single product's details using its ID.
      parameters:
        - name: id
          in: path
          required: true
          schema:
            type: string
      responses:
        '200':
          description: Product details
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/Product'
        '404':
          description: Product not found
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

````