---
title: "Fetch an item"
method: GET
path: "/items/{id}"
tags: ["Items"]
---

# Fetch an item

`GET /items/{id}`

Get details of a specific catalog item.

## Path parameters

- `id` string, required

## Response `200`

Item details.

- Item — A reusable catalog item used in invoice line items.
  - `id` string — Item ID. Prefix: item_
  - `entity` 'item'
  - `active` boolean — Whether the item is active and available for use in new invoices.
  - `amount` integer — Item price in paise (smallest INR unit).
  - `unit_amount` integer — Per-unit price in paise.
  - `currency` string
  - `name` string — Display name of the item.
  - `description` string
  - `created_at` integer

## Other responses

- `401` — Authentication failed. Invalid or missing API key credentials.
- `404` — Resource not found.
- `429` — Rate limit exceeded. Implement exponential backoff with jitter before retrying.

---

[API](https://skmtc.net/curlec/apis/razorpay-api.md) · [All operations](https://skmtc.net/curlec/apis/razorpay-api/llms.txt) · [OpenAPI document](https://skmtc-service-staging.skmtc.workers.dev/v1/apis/curlec/razorpay-api/versions/824ca9e6faef/schema)
