---
title: "Retrieve a specific product by ID"
url: "https://developer.apiprimer.com/apis/product-inventory-api/versions/b23daac0-23b7-4663-8306-2f0b7d604314/paths/products-productId/get"
---

> Full API specification: https://developer.apiprimer.com/apis/product-inventory-api/versions/b23daac0-23b7-4663-8306-2f0b7d604314.md

# Retrieve a specific product by ID

`GET` `/products/{productId}`

## Path parameters

- `productId` (string, required) - ID of the product to retrieve

## Responses

- `200` - Successful operation
- `404` - Product not found

## OpenAPI definition

```yaml
openapi: 3.1.0
info:
  title: Product Inventory API
  version: 1.0.0
servers:
  - url: https://api.apiprimer.com
paths:
  /products/{productId}:
    get:
      summary: Retrieve a specific product by ID
      parameters:
        - in: path
          name: productId
          required: true
          schema:
            type: string
          description: ID of the product to retrieve
      responses:
        "200":
          description: Successful operation
        "404":
          description: Product not found
security:
  - ApiKeyAuth: []
components:
  securitySchemes:
    ApiKeyAuth:
      type: apiKey
      in: header
      name: X-API-Key
```
